using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace E_ZKEcc.Response { public class DepartmentGetResponse { /// /// 部门编号 /// 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; } } }