page-dict-data-input.ts 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. *
  9. *
  10. * NOTE: This class is auto generated by the swagger code generator program.
  11. * https://github.com/swagger-api/swagger-codegen.git
  12. * Do not edit the class manually.
  13. */
  14. import { Filter } from './filter';
  15. import { Search } from './search';
  16. /**
  17. *
  18. *
  19. * @export
  20. * @interface PageDictDataInput
  21. */
  22. export interface PageDictDataInput {
  23. /**
  24. * @type {Search}
  25. * @memberof PageDictDataInput
  26. */
  27. search?: Search;
  28. /**
  29. * 模糊查询关键字
  30. *
  31. * @type {string}
  32. * @memberof PageDictDataInput
  33. */
  34. keyword?: string | null;
  35. /**
  36. * @type {Filter}
  37. * @memberof PageDictDataInput
  38. */
  39. filter?: Filter;
  40. /**
  41. * 当前页码
  42. *
  43. * @type {number}
  44. * @memberof PageDictDataInput
  45. */
  46. page?: number;
  47. /**
  48. * 页码容量
  49. *
  50. * @type {number}
  51. * @memberof PageDictDataInput
  52. */
  53. pageSize?: number;
  54. /**
  55. * 排序字段
  56. *
  57. * @type {string}
  58. * @memberof PageDictDataInput
  59. */
  60. field?: string | null;
  61. /**
  62. * 排序方向
  63. *
  64. * @type {string}
  65. * @memberof PageDictDataInput
  66. */
  67. order?: string | null;
  68. /**
  69. * 降序排序
  70. *
  71. * @type {string}
  72. * @memberof PageDictDataInput
  73. */
  74. descStr?: string | null;
  75. /**
  76. * 字典类型Id
  77. *
  78. * @type {number}
  79. * @memberof PageDictDataInput
  80. */
  81. dictTypeId?: number;
  82. /**
  83. * 文本
  84. *
  85. * @type {string}
  86. * @memberof PageDictDataInput
  87. */
  88. lable?: string | null;
  89. /**
  90. * 编码
  91. *
  92. * @type {string}
  93. * @memberof PageDictDataInput
  94. */
  95. code?: string | null;
  96. }