using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Dto { public class AjgldsrxxDto { public int endRow { get; set; } public int firstPage { get; set; } public bool hasNextPage { get; set; } public bool isFirstPage { get; set; } public bool isLastPage { get; set; } public int lastPage { get; set; } public List list { get; set; } public int navigateFirstPage { get; set; } public int navigateLastPage { get; set; } public int navigatePages { get; set; } public List navigatepageNums { get; set; } public int nextPage { get; set; } public int pageNum { get; set; } public int pageSize { get; set; } public int pages { get; set; } public int prePage { get; set; } public int size { get; set; } public int startRow { get; set; } public int total { get; set; } } public class AjglBaseDto { /// /// 部门受案号 /// public string bmsah { get; set; } /// /// 国籍代码 /// public string gjdm { get; set; } /// /// 国籍名称 /// public string gjmc { get; set; } /// /// 民族代码 /// public string mzdm { get; set; } /// /// 民族名称 /// public string mzmc { get; set; } /// /// 性别代码 /// public string xbdm { get; set; } /// /// / 性别 /// public string xbmc { get; set; } /// /// 姓名 /// public string xm { get; set; } /// /// 证件号码 /// public string zjhm { get; set; } /// /// 证件类型代码 /// public string zjlxdm { get; set; } /// /// 证件类型 /// public string zjlxmc { get; set; } /// /// /// public string zrrbm { get; set; } /// /// 当事人类型代码 /// public string zrrlxdm { get; set; } /// /// 当事人类型 /// public string zrrlxmc { get; set; } } }