终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

15 行
248 B

  1. namespace Lebai.SDK.Dtos
  2. {
  3. public class GetTasksInput
  4. {
  5. /// <summary>
  6. /// 页索引
  7. /// </summary>
  8. public int PageIndex { get; set; } = 1;
  9. /// <summary>
  10. /// 页大小
  11. /// </summary>
  12. public int PageSize { get; set; } = 10;
  13. }
  14. }