Files
GateDge2023_ljy/00.SDK/E_ZKEccSDK/Response/EmployeeGetResponse.cs
PastSaid 16fbd10312 1
2024-04-29 17:57:07 +08:00

23 lines
646 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace E_ZKEccSDK.Response
{
public class EmployeeGetResponse
{
public string pin { get; set; }
public string name { get; set; }
public string deptnumber { get; set; }
public string deptname { get; set; }
public string position { get; set; }
public string gender { get; set; }
public string telephone { get; set; }
public string email { get; set; }
public string Card { get; set; }
public string mobile { get; set; }
public int status { get; set; }
}
}