sys-lang.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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 { DirectionEnum } from './direction-enum';
  15. import { WeekEnum } from './week-enum';
  16. /**
  17. *
  18. *
  19. * @export
  20. * @interface SysLang
  21. */
  22. export interface SysLang {
  23. /**
  24. * 雪花Id
  25. *
  26. * @type {number}
  27. * @memberof SysLang
  28. */
  29. id?: number;
  30. /**
  31. * 创建时间
  32. *
  33. * @type {Date}
  34. * @memberof SysLang
  35. */
  36. createTime?: Date;
  37. /**
  38. * 更新时间
  39. *
  40. * @type {Date}
  41. * @memberof SysLang
  42. */
  43. updateTime?: Date | null;
  44. /**
  45. * 创建者Id
  46. *
  47. * @type {number}
  48. * @memberof SysLang
  49. */
  50. createUserId?: number | null;
  51. /**
  52. * 创建者姓名
  53. *
  54. * @type {string}
  55. * @memberof SysLang
  56. */
  57. createUserName?: string | null;
  58. /**
  59. * 修改者Id
  60. *
  61. * @type {number}
  62. * @memberof SysLang
  63. */
  64. updateUserId?: number | null;
  65. /**
  66. * 修改者姓名
  67. *
  68. * @type {string}
  69. * @memberof SysLang
  70. */
  71. updateUserName?: string | null;
  72. /**
  73. * 语言名称
  74. *
  75. * @type {string}
  76. * @memberof SysLang
  77. */
  78. name?: string | null;
  79. /**
  80. * 语言代码(如 zh-CN)
  81. *
  82. * @type {string}
  83. * @memberof SysLang
  84. */
  85. code?: string | null;
  86. /**
  87. * ISO 语言代码
  88. *
  89. * @type {string}
  90. * @memberof SysLang
  91. */
  92. isoCode?: string | null;
  93. /**
  94. * URL 语言代码
  95. *
  96. * @type {string}
  97. * @memberof SysLang
  98. */
  99. urlCode?: string | null;
  100. /**
  101. * @type {DirectionEnum}
  102. * @memberof SysLang
  103. */
  104. direction?: DirectionEnum;
  105. /**
  106. * 日期格式(如 YYYY-MM-DD)
  107. *
  108. * @type {string}
  109. * @memberof SysLang
  110. */
  111. dateFormat?: string | null;
  112. /**
  113. * 时间格式(如 HH:MM:SS)
  114. *
  115. * @type {string}
  116. * @memberof SysLang
  117. */
  118. timeFormat?: string | null;
  119. /**
  120. * @type {WeekEnum}
  121. * @memberof SysLang
  122. */
  123. weekStart?: WeekEnum;
  124. /**
  125. * 分组符号(如 ,)
  126. *
  127. * @type {string}
  128. * @memberof SysLang
  129. */
  130. grouping?: string | null;
  131. /**
  132. * 小数点符号
  133. *
  134. * @type {string}
  135. * @memberof SysLang
  136. */
  137. decimalPoint?: string | null;
  138. /**
  139. * 千分位分隔符
  140. *
  141. * @type {string}
  142. * @memberof SysLang
  143. */
  144. thousandsSep?: string | null;
  145. /**
  146. * 是否启用
  147. *
  148. * @type {boolean}
  149. * @memberof SysLang
  150. */
  151. active?: boolean;
  152. }