update-tenant-input.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. /**
  18. *
  19. *
  20. * @export
  21. * @interface UpdateTenantInput
  22. */
  23. export interface UpdateTenantInput {
  24. /**
  25. * 雪花Id
  26. *
  27. * @type {number}
  28. * @memberof UpdateTenantInput
  29. */
  30. id?: number;
  31. /**
  32. * 创建时间
  33. *
  34. * @type {Date}
  35. * @memberof UpdateTenantInput
  36. */
  37. createTime?: Date;
  38. /**
  39. * 更新时间
  40. *
  41. * @type {Date}
  42. * @memberof UpdateTenantInput
  43. */
  44. updateTime?: Date | null;
  45. /**
  46. * 创建者Id
  47. *
  48. * @type {number}
  49. * @memberof UpdateTenantInput
  50. */
  51. createUserId?: number | null;
  52. /**
  53. * 创建者姓名
  54. *
  55. * @type {string}
  56. * @memberof UpdateTenantInput
  57. */
  58. createUserName?: string | null;
  59. /**
  60. * 修改者Id
  61. *
  62. * @type {number}
  63. * @memberof UpdateTenantInput
  64. */
  65. updateUserId?: number | null;
  66. /**
  67. * 修改者姓名
  68. *
  69. * @type {string}
  70. * @memberof UpdateTenantInput
  71. */
  72. updateUserName?: string | null;
  73. /**
  74. * 软删除
  75. *
  76. * @type {boolean}
  77. * @memberof UpdateTenantInput
  78. */
  79. isDelete?: boolean;
  80. /**
  81. * 用户Id
  82. *
  83. * @type {number}
  84. * @memberof UpdateTenantInput
  85. */
  86. userId?: number;
  87. /**
  88. * 机构Id
  89. *
  90. * @type {number}
  91. * @memberof UpdateTenantInput
  92. */
  93. orgId?: number;
  94. /**
  95. * 主机
  96. *
  97. * @type {string}
  98. * @memberof UpdateTenantInput
  99. */
  100. host?: string | null;
  101. /**
  102. * @type {TenantTypeEnum}
  103. * @memberof UpdateTenantInput
  104. */
  105. tenantType?: TenantTypeEnum;
  106. /**
  107. * @type {DbType}
  108. * @memberof UpdateTenantInput
  109. */
  110. dbType?: DbType;
  111. /**
  112. * 数据库连接
  113. *
  114. * @type {string}
  115. * @memberof UpdateTenantInput
  116. */
  117. connection?: string | null;
  118. /**
  119. * 数据库标识
  120. *
  121. * @type {string}
  122. * @memberof UpdateTenantInput
  123. */
  124. configId?: string | null;
  125. /**
  126. * 从库连接/读写分离
  127. *
  128. * @type {string}
  129. * @memberof UpdateTenantInput
  130. */
  131. slaveConnections?: string | null;
  132. /**
  133. * 排序
  134. *
  135. * @type {number}
  136. * @memberof UpdateTenantInput
  137. */
  138. orderNo?: number;
  139. /**
  140. * 备注
  141. *
  142. * @type {string}
  143. * @memberof UpdateTenantInput
  144. */
  145. remark?: string | null;
  146. /**
  147. * @type {StatusEnum}
  148. * @memberof UpdateTenantInput
  149. */
  150. status?: StatusEnum;
  151. /**
  152. * 电子邮箱
  153. *
  154. * @type {string}
  155. * @memberof UpdateTenantInput
  156. */
  157. email?: string | null;
  158. /**
  159. * 电话
  160. *
  161. * @type {string}
  162. * @memberof UpdateTenantInput
  163. */
  164. phone?: string | null;
  165. /**
  166. * 租户名称
  167. *
  168. * @type {string}
  169. * @memberof UpdateTenantInput
  170. */
  171. name: string;
  172. /**
  173. * 租管账号
  174. *
  175. * @type {string}
  176. * @memberof UpdateTenantInput
  177. */
  178. adminAccount: string;
  179. }