Files
sryang 577060bc78 chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore
- 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
2026-09-10 09:42:37 +08:00

45 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}