Files
GateDge2023_ljy/00.SDK/E_ZKEccSDK/Response/DepartmentGetResponse.cs

26 lines
542 B
C#
Raw Normal View History

2024-04-29 17:57:07 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-05-15 13:56:09 +08:00
namespace E_ZKEcc.Response
2024-04-29 17:57:07 +08:00
{
public class DepartmentGetResponse
{
/// <summary>
/// 部门编号
/// </summary>
public string deptnumber { get; set; }
public string deptname { get; set; }
public string deptperson { get; set; }
public string parentnumber { get; set; }
public string deptphone { get; set; }
public string deptaddr { get; set; }
}
}