40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace 報到系統客戶端.Data.Models
|
|
{
|
|
/// <summary>
|
|
/// 本地 BPSN 表資料項目
|
|
/// 對應後端 DAC_BPSN.cs 的 BPSNItem
|
|
/// </summary>
|
|
public class LocalBPSNItem
|
|
{
|
|
[JsonProperty("BPENO")]
|
|
public string BPENO { get; set; }
|
|
|
|
[JsonProperty("BPNME")]
|
|
public string BPNME { get; set; }
|
|
|
|
[JsonProperty("BPAWD")]
|
|
public string BPAWD { get; set; }
|
|
|
|
[JsonProperty("Is系統管理群組")]
|
|
public bool Is系統管理群組 { get; set; }
|
|
|
|
[JsonProperty("Is客戶管理群組")]
|
|
public bool Is客戶管理群組 { get; set; }
|
|
|
|
[JsonProperty("Is現場工作群組")]
|
|
public bool Is現場工作群組 { get; set; }
|
|
|
|
[JsonProperty("Is查詢群組")]
|
|
public bool Is查詢群組 { get; set; }
|
|
|
|
[JsonProperty("CreatedAt")]
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
[JsonProperty("UpdatedAt")]
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
}
|