| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace DocumentServiceAPI.Utility |
| | | namespace DocumentServiceAPI.Utility |
| | | { |
| | | /// <summary> |
| | | /// 分页查询条件基类 |
| | | /// </summary> |
| | | public abstract class PageBaseSearch |
| | | public abstract class PageBaseSearch: BaseSearch |
| | | { |
| | | /// <summary> |
| | | /// 页码 |
| | |
| | | /// 分页大小 |
| | | /// </summary> |
| | | public int PageSize { get; set; } = 20; |
| | | |
| | | } |
| | | |
| | | public abstract class BaseSearch |
| | | { |
| | | /// <summary> |
| | | /// 公司ID |
| | | /// </summary> |
| | | public string CompanyID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 租户ID |
| | | /// </summary> |
| | | public string TenantID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 用户ID |
| | | /// </summary> |
| | | public string UserID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 开始日期 |