using System; using System.Collections.Generic; using System.Data.Common; using WebLib; namespace 報到系統 { /// /// MMSPlatform 資料集合類別 /// [Serializable] public partial class MMSPlatformList : List, IDataList { public void Fill(DbDataReader reader) { DAC.FillData(reader, this); } } /// /// MMSPlatform 資料紀錄類別 /// [Serializable] public partial class MMSPlatformItem : DataItemBase { /// 流水號 public int ID { get; set; } /// 平台代碼(EVERY8D / MITAKE) public string PlatformCode { get; set; } /// 平台名稱 public string PlatformName { get; set; } /// 主帳號 public string Account { get; set; } /// 主密碼 public string Password { get; set; } /// 備註 public string Remark { get; set; } } }