add-tenant-input.ts 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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 { DbType } from './db-type';
  15. import { StatusEnum } from './status-enum';
  16. import { TenantTypeEnum } from './tenant-type-enum';
  17. import { YesNoEnum } from './yes-no-enum';
  18. /**
  19. *
  20. *
  21. * @export
  22. * @interface AddTenantInput
  23. */
  24. export interface AddTenantInput {
  25. /**
  26. * 雪花Id
  27. *
  28. * @type {number}
  29. * @memberof AddTenantInput
  30. */
  31. id?: number;
  32. /**
  33. * 创建时间
  34. *
  35. * @type {Date}
  36. * @memberof AddTenantInput
  37. */
  38. createTime?: Date;
  39. /**
  40. * 更新时间
  41. *
  42. * @type {Date}
  43. * @memberof AddTenantInput
  44. */
  45. updateTime?: Date | null;
  46. /**
  47. * 创建者Id
  48. *
  49. * @type {number}
  50. * @memberof AddTenantInput
  51. */
  52. createUserId?: number | null;
  53. /**
  54. * 创建者姓名
  55. *
  56. * @type {string}
  57. * @memberof AddTenantInput
  58. */
  59. createUserName?: string | null;
  60. /**
  61. * 修改者Id
  62. *
  63. * @type {number}
  64. * @memberof AddTenantInput
  65. */
  66. updateUserId?: number | null;
  67. /**
  68. * 修改者姓名
  69. *
  70. * @type {string}
  71. * @memberof AddTenantInput
  72. */
  73. updateUserName?: string | null;
  74. /**
  75. * 租管用户Id
  76. *
  77. * @type {number}
  78. * @memberof AddTenantInput
  79. */
  80. userId?: number;
  81. /**
  82. * 机构Id
  83. *
  84. * @type {number}
  85. * @memberof AddTenantInput
  86. */
  87. orgId?: number;
  88. /**
  89. * 域名
  90. *
  91. * @type {string}
  92. * @memberof AddTenantInput
  93. */
  94. host?: string | null;
  95. /**
  96. * @type {TenantTypeEnum}
  97. * @memberof AddTenantInput
  98. */
  99. tenantType?: TenantTypeEnum;
  100. /**
  101. * @type {DbType}
  102. * @memberof AddTenantInput
  103. */
  104. dbType?: DbType;
  105. /**
  106. * 数据库连接
  107. *
  108. * @type {string}
  109. * @memberof AddTenantInput
  110. */
  111. connection?: string | null;
  112. /**
  113. * 数据库标识
  114. *
  115. * @type {string}
  116. * @memberof AddTenantInput
  117. */
  118. configId?: string | null;
  119. /**
  120. * 从库连接/读写分离
  121. *
  122. * @type {string}
  123. * @memberof AddTenantInput
  124. */
  125. slaveConnections?: string | null;
  126. /**
  127. * @type {YesNoEnum}
  128. * @memberof AddTenantInput
  129. */
  130. enableReg?: YesNoEnum;
  131. /**
  132. * 默认注册方案Id
  133. *
  134. * @type {number}
  135. * @memberof AddTenantInput
  136. */
  137. regWayId?: number | null;
  138. /**
  139. * 图标
  140. *
  141. * @type {string}
  142. * @memberof AddTenantInput
  143. */
  144. logo?: string | null;
  145. /**
  146. * 水印
  147. *
  148. * @type {string}
  149. * @memberof AddTenantInput
  150. */
  151. watermark?: string | null;
  152. /**
  153. * 排序
  154. *
  155. * @type {number}
  156. * @memberof AddTenantInput
  157. */
  158. orderNo?: number;
  159. /**
  160. * 备注
  161. *
  162. * @type {string}
  163. * @memberof AddTenantInput
  164. */
  165. remark?: string | null;
  166. /**
  167. * @type {StatusEnum}
  168. * @memberof AddTenantInput
  169. */
  170. status?: StatusEnum;
  171. /**
  172. * 电子邮箱
  173. *
  174. * @type {string}
  175. * @memberof AddTenantInput
  176. */
  177. email?: string | null;
  178. /**
  179. * 电话
  180. *
  181. * @type {string}
  182. * @memberof AddTenantInput
  183. */
  184. phone?: string | null;
  185. /**
  186. * 租户名称
  187. *
  188. * @type {string}
  189. * @memberof AddTenantInput
  190. */
  191. name: string;
  192. /**
  193. * 租管账号
  194. *
  195. * @type {string}
  196. * @memberof AddTenantInput
  197. */
  198. adminAccount: string;
  199. /**
  200. * 系统主标题
  201. *
  202. * @type {string}
  203. * @memberof AddTenantInput
  204. */
  205. title?: string | null;
  206. /**
  207. * 系统副标题
  208. *
  209. * @type {string}
  210. * @memberof AddTenantInput
  211. */
  212. viceTitle?: string | null;
  213. /**
  214. * 系统描述
  215. *
  216. * @type {string}
  217. * @memberof AddTenantInput
  218. */
  219. viceDesc?: string | null;
  220. /**
  221. * 版权说明
  222. *
  223. * @type {string}
  224. * @memberof AddTenantInput
  225. */
  226. copyright?: string | null;
  227. /**
  228. * ICP备案号
  229. *
  230. * @type {string}
  231. * @memberof AddTenantInput
  232. */
  233. icp?: string | null;
  234. /**
  235. * ICP地址
  236. *
  237. * @type {string}
  238. * @memberof AddTenantInput
  239. */
  240. icpUrl?: string | null;
  241. /**
  242. * Logo图片Base64码
  243. *
  244. * @type {string}
  245. * @memberof AddTenantInput
  246. */
  247. logoBase64?: string | null;
  248. /**
  249. * Logo文件名
  250. *
  251. * @type {string}
  252. * @memberof AddTenantInput
  253. */
  254. logoFileName?: string | null;
  255. }