chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore - 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace 報到系統客戶端.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 員工資訊項目
|
||||
/// </summary>
|
||||
public class BPSNItem
|
||||
{
|
||||
[JsonProperty("BPENO")]
|
||||
public string BPENO { get; set; }
|
||||
|
||||
[JsonProperty("BPNME")]
|
||||
public string BPNME { get; set; }
|
||||
|
||||
[JsonProperty("BPAWD")]
|
||||
public string BPAWD { get; set; }
|
||||
|
||||
[JsonProperty("Is系統管理群組")]
|
||||
public int Is系統管理群組 { get; set; }
|
||||
|
||||
[JsonProperty("Is客戶管理群組")]
|
||||
public int Is客戶管理群組 { get; set; }
|
||||
|
||||
[JsonProperty("Is現場工作群組")]
|
||||
public int Is現場工作群組 { get; set; }
|
||||
|
||||
[JsonProperty("Is查詢群組")]
|
||||
public int Is查詢群組 { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 員工資訊清單
|
||||
/// </summary>
|
||||
public class BPSNList : List<BPSNItem>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user