using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Dto { public class FindSqrxxDto { public List content { get; set; } public bool empty { get; set; } public bool first { get; set; } public bool last { get; set; } public int number { get; set; } public int numberOfElements { get; set; } public PageableDto pageable { get; set; } public int size { get; set; } public SortDto sort { get; set; } public int totalPages { get; set; } public int totalElements { get; set; } } public class ContentDto { /// /// 创建时间 /// public string cjsj { get; set; } /// /// 等级单位代码 /// public string djdwbm { get; set; } /// /// 等级单位代码 /// public string djdwmc { get; set; } /// /// 居民身份证 /// public string jmsfzh { get; set; } public object lxdh { get; set; } public object lxdz { get; set; } public string sfsc { get; set; } public string sjbsbh { get; set; } public string sjly { get; set; } public string sqrbh { get; set; } public string sqrlxdm { get; set; } /// /// 申请人类型 /// public string sqrlxmc { get; set; } /// /// 申请人身份代码 /// public string sqrsfdm { get; set; } /// /// 申请人身份 -律师 /// public string sqrsfmc { get; set; } /// /// 申请人姓名 /// public string sqrxm { get; set; } public string szlssws { get; set; } public string tyshxydm { get; set; } public object zbls { get; set; } public string zhxgsj { get; set; } /// /// 证件类型号码 /// public string zjhm { get; set; } /// /// 证件类型代码 /// public string zjlxdm { get; set; } /// /// 证件类型名称 /// public string zjlxmc { get; set; } public object zyzh { get; set; } } public class PageableDto { public int offset { get; set; } public int pageNumber { get; set; } public int pageSize { get; set; } public bool paged { get; set; } public bool unpaged { get; set; } public SortDto sort { get; set; } } public class SortDto { public bool empty { get; set; } public bool sorted { get; set; } public bool unsorted { get; set; } } }