BaseSearchModel.cs 432 B

12345678910111213
  1. 
  2. namespace Ropin.Inspection.Model
  3. {
  4. public class BaseSearchModel
  5. {
  6. public bool IsPagination { get; set; } = true; //是否分页
  7. public int PageIndex { get; set; } = 1; //页码
  8. public int PageSize { get; set; } = 10; //每页10行
  9. public int TotalCount { get; set; } = 0; //总行数
  10. //public string OrganizeCode { get; set; } //组织架构ID
  11. }
  12. }