26 lines
542 B
C#
26 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace E_ZKEcc.Response
|
|
{
|
|
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; }
|
|
}
|
|
}
|