update-tenant-input.ts 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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 { DbType } from './db-type';
  15. import { StatusEnum } from './status-enum';
  16. import { TenantTypeEnum } from './tenant-type-enum';
  17. /**
  18. *
  19. * @export
  20. * @interface UpdateTenantInput
  21. */
  22. export interface UpdateTenantInput {
  23. /**
  24. * 雪花Id
  25. * @type {number}
  26. * @memberof UpdateTenantInput
  27. */
  28. id?: number;
  29. /**
  30. * 创建时间
  31. * @type {Date}
  32. * @memberof UpdateTenantInput
  33. */
  34. createTime?: Date | null;
  35. /**
  36. * 更新时间
  37. * @type {Date}
  38. * @memberof UpdateTenantInput
  39. */
  40. updateTime?: Date | null;
  41. /**
  42. * 创建者Id
  43. * @type {number}
  44. * @memberof UpdateTenantInput
  45. */
  46. createUserId?: number | null;
  47. /**
  48. * 修改者Id
  49. * @type {number}
  50. * @memberof UpdateTenantInput
  51. */
  52. updateUserId?: number | null;
  53. /**
  54. * 软删除
  55. * @type {boolean}
  56. * @memberof UpdateTenantInput
  57. */
  58. isDelete?: boolean;
  59. /**
  60. * 用户Id
  61. * @type {number}
  62. * @memberof UpdateTenantInput
  63. */
  64. userId?: number;
  65. /**
  66. * 机构Id
  67. * @type {number}
  68. * @memberof UpdateTenantInput
  69. */
  70. orgId?: number;
  71. /**
  72. * 主机
  73. * @type {string}
  74. * @memberof UpdateTenantInput
  75. */
  76. host?: string | null;
  77. /**
  78. *
  79. * @type {TenantTypeEnum}
  80. * @memberof UpdateTenantInput
  81. */
  82. tenantType?: TenantTypeEnum;
  83. /**
  84. *
  85. * @type {DbType}
  86. * @memberof UpdateTenantInput
  87. */
  88. dbType?: DbType;
  89. /**
  90. * 数据库连接
  91. * @type {string}
  92. * @memberof UpdateTenantInput
  93. */
  94. connection?: string | null;
  95. /**
  96. * 数据库标识
  97. * @type {string}
  98. * @memberof UpdateTenantInput
  99. */
  100. configId?: string | null;
  101. /**
  102. * 排序
  103. * @type {number}
  104. * @memberof UpdateTenantInput
  105. */
  106. order?: number;
  107. /**
  108. * 备注
  109. * @type {string}
  110. * @memberof UpdateTenantInput
  111. */
  112. remark?: string | null;
  113. /**
  114. *
  115. * @type {StatusEnum}
  116. * @memberof UpdateTenantInput
  117. */
  118. status?: StatusEnum;
  119. /**
  120. * 电子邮箱
  121. * @type {string}
  122. * @memberof UpdateTenantInput
  123. */
  124. email?: string | null;
  125. /**
  126. * 电话
  127. * @type {string}
  128. * @memberof UpdateTenantInput
  129. */
  130. phone?: string | null;
  131. /**
  132. * 租户名称
  133. * @type {string}
  134. * @memberof UpdateTenantInput
  135. */
  136. name: string;
  137. /**
  138. * 管理员名称
  139. * @type {string}
  140. * @memberof UpdateTenantInput
  141. */
  142. adminName: string;
  143. }