sys-dict-data.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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 { StatusEnum } from './status-enum';
  15. /**
  16. * 系统字典值表
  17. *
  18. * @export
  19. * @interface SysDictData
  20. */
  21. export interface SysDictData {
  22. /**
  23. * 雪花Id
  24. *
  25. * @type {number}
  26. * @memberof SysDictData
  27. */
  28. id?: number;
  29. /**
  30. * 创建时间
  31. *
  32. * @type {Date}
  33. * @memberof SysDictData
  34. */
  35. createTime?: Date;
  36. /**
  37. * 更新时间
  38. *
  39. * @type {Date}
  40. * @memberof SysDictData
  41. */
  42. updateTime?: Date | null;
  43. /**
  44. * 创建者Id
  45. *
  46. * @type {number}
  47. * @memberof SysDictData
  48. */
  49. createUserId?: number | null;
  50. /**
  51. * 创建者姓名
  52. *
  53. * @type {string}
  54. * @memberof SysDictData
  55. */
  56. createUserName?: string | null;
  57. /**
  58. * 修改者Id
  59. *
  60. * @type {number}
  61. * @memberof SysDictData
  62. */
  63. updateUserId?: number | null;
  64. /**
  65. * 修改者姓名
  66. *
  67. * @type {string}
  68. * @memberof SysDictData
  69. */
  70. updateUserName?: string | null;
  71. /**
  72. * 软删除
  73. *
  74. * @type {boolean}
  75. * @memberof SysDictData
  76. */
  77. isDelete?: boolean;
  78. /**
  79. * 字典类型Id
  80. *
  81. * @type {number}
  82. * @memberof SysDictData
  83. */
  84. dictTypeId?: number;
  85. /**
  86. * 值
  87. *
  88. * @type {string}
  89. * @memberof SysDictData
  90. */
  91. value: string;
  92. /**
  93. * 编码
  94. *
  95. * @type {string}
  96. * @memberof SysDictData
  97. */
  98. code: string;
  99. /**
  100. * 名称
  101. *
  102. * @type {string}
  103. * @memberof SysDictData
  104. */
  105. name?: string | null;
  106. /**
  107. * 显示样式-标签颜色
  108. *
  109. * @type {string}
  110. * @memberof SysDictData
  111. */
  112. tagType?: string | null;
  113. /**
  114. * 显示样式-Style(控制显示样式)
  115. *
  116. * @type {string}
  117. * @memberof SysDictData
  118. */
  119. styleSetting?: string | null;
  120. /**
  121. * 显示样式-Class(控制显示样式)
  122. *
  123. * @type {string}
  124. * @memberof SysDictData
  125. */
  126. classSetting?: string | null;
  127. /**
  128. * 排序
  129. *
  130. * @type {number}
  131. * @memberof SysDictData
  132. */
  133. orderNo?: number;
  134. /**
  135. * 备注
  136. *
  137. * @type {string}
  138. * @memberof SysDictData
  139. */
  140. remark?: string | null;
  141. /**
  142. * 拓展数据(保存业务功能的配置项)
  143. *
  144. * @type {string}
  145. * @memberof SysDictData
  146. */
  147. extData?: string | null;
  148. /**
  149. * @type {StatusEnum}
  150. * @memberof SysDictData
  151. */
  152. status?: StatusEnum;
  153. }