41 lines
957 B
C#
41 lines
957 B
C#
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>
|
|
{
|
|
}
|
|
}
|