add-dict-data-input.ts 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET
  5. * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. * Contact: 515096995@qq.com
  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. import { SysDictType } from './sys-dict-type';
  16. import { SysUser } from './sys-user';
  17. /**
  18. *
  19. * @export
  20. * @interface AddDictDataInput
  21. */
  22. export interface AddDictDataInput {
  23. /**
  24. * 雪花Id
  25. * @type {number}
  26. * @memberof AddDictDataInput
  27. */
  28. id?: number;
  29. /**
  30. * 创建时间
  31. * @type {Date}
  32. * @memberof AddDictDataInput
  33. */
  34. createTime?: Date | null;
  35. /**
  36. * 更新时间
  37. * @type {Date}
  38. * @memberof AddDictDataInput
  39. */
  40. updateTime?: Date | null;
  41. /**
  42. * 创建者Id
  43. * @type {number}
  44. * @memberof AddDictDataInput
  45. */
  46. createUserId?: number | null;
  47. /**
  48. *
  49. * @type {SysUser}
  50. * @memberof AddDictDataInput
  51. */
  52. createUser?: SysUser;
  53. /**
  54. * 创建者姓名
  55. * @type {string}
  56. * @memberof AddDictDataInput
  57. */
  58. createUserName?: string | null;
  59. /**
  60. * 修改者Id
  61. * @type {number}
  62. * @memberof AddDictDataInput
  63. */
  64. updateUserId?: number | null;
  65. /**
  66. *
  67. * @type {SysUser}
  68. * @memberof AddDictDataInput
  69. */
  70. updateUser?: SysUser;
  71. /**
  72. * 修改者姓名
  73. * @type {string}
  74. * @memberof AddDictDataInput
  75. */
  76. updateUserName?: string | null;
  77. /**
  78. * 软删除
  79. * @type {boolean}
  80. * @memberof AddDictDataInput
  81. */
  82. isDelete?: boolean;
  83. /**
  84. * 字典类型Id
  85. * @type {number}
  86. * @memberof AddDictDataInput
  87. */
  88. dictTypeId?: number;
  89. /**
  90. *
  91. * @type {SysDictType}
  92. * @memberof AddDictDataInput
  93. */
  94. dictType?: SysDictType;
  95. /**
  96. * 值
  97. * @type {string}
  98. * @memberof AddDictDataInput
  99. */
  100. value: string;
  101. /**
  102. * 编码
  103. * @type {string}
  104. * @memberof AddDictDataInput
  105. */
  106. code: string;
  107. /**
  108. * 显示样式-标签颜色
  109. * @type {string}
  110. * @memberof AddDictDataInput
  111. */
  112. tagType?: string | null;
  113. /**
  114. * 显示样式-Style(控制显示样式)
  115. * @type {string}
  116. * @memberof AddDictDataInput
  117. */
  118. styleSetting?: string | null;
  119. /**
  120. * 显示样式-Class(控制显示样式)
  121. * @type {string}
  122. * @memberof AddDictDataInput
  123. */
  124. classSetting?: string | null;
  125. /**
  126. * 排序
  127. * @type {number}
  128. * @memberof AddDictDataInput
  129. */
  130. orderNo?: number;
  131. /**
  132. * 备注
  133. * @type {string}
  134. * @memberof AddDictDataInput
  135. */
  136. remark?: string | null;
  137. /**
  138. * 拓展数据(保存业务功能的配置项)
  139. * @type {string}
  140. * @memberof AddDictDataInput
  141. */
  142. extData?: string | null;
  143. /**
  144. *
  145. * @type {StatusEnum}
  146. * @memberof AddDictDataInput
  147. */
  148. status?: StatusEnum;
  149. }