using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace WMS.Web.Core.Dto { public class PaginationRequestDto: PaginationBaseRequestDto { /// /// 组织Id(所有列表页都需要 全局) /// [Required(ErrorMessage = "组织不能为空")] public virtual int OrgId { get; set; } } public class PaginationBaseRequestDto { /// /// 页数 不传默认为1 /// public int PageNo { get; set; } = 1; /// /// 每页条数 不传默认每页10 条 /// public int PageSize { get; set; } = 10; } }