chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore - 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data.Common;
|
||||
using WebLib;
|
||||
|
||||
namespace 報到系統
|
||||
{
|
||||
/// <summary>
|
||||
/// MMSPlatform 資料集合類別
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class MMSPlatformList : List<MMSPlatformItem>, IDataList
|
||||
{
|
||||
public void Fill(DbDataReader reader)
|
||||
{
|
||||
DAC.FillData<MMSPlatformItem>(reader, this);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// MMSPlatform 資料紀錄類別
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public partial class MMSPlatformItem : DataItemBase
|
||||
{
|
||||
/// <summary>流水號</summary>
|
||||
public int ID { get; set; }
|
||||
|
||||
/// <summary>平台代碼(EVERY8D / MITAKE)</summary>
|
||||
public string PlatformCode { get; set; }
|
||||
|
||||
/// <summary>平台名稱</summary>
|
||||
public string PlatformName { get; set; }
|
||||
|
||||
/// <summary>主帳號</summary>
|
||||
public string Account { get; set; }
|
||||
|
||||
/// <summary>主密碼</summary>
|
||||
public string Password { get; set; }
|
||||
|
||||
/// <summary>備註</summary>
|
||||
public string Remark { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user