| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /* tslint:disable */
- /* eslint-disable */
- /**
- * Admin.NET
- * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
- *
- * OpenAPI spec version: 1.0.0
- * Contact: 515096995@qq.com
- *
- * NOTE: This class is auto generated by the swagger code generator program.
- * https://github.com/swagger-api/swagger-codegen.git
- * Do not edit the class manually.
- */
- import { DbType } from './db-type';
- import { StatusEnum } from './status-enum';
- import { TenantTypeEnum } from './tenant-type-enum';
- /**
- *
- * @export
- * @interface UpdateTenantInput
- */
- export interface UpdateTenantInput {
- /**
- * 雪花Id
- * @type {number}
- * @memberof UpdateTenantInput
- */
- id?: number;
- /**
- * 创建时间
- * @type {Date}
- * @memberof UpdateTenantInput
- */
- createTime?: Date | null;
- /**
- * 更新时间
- * @type {Date}
- * @memberof UpdateTenantInput
- */
- updateTime?: Date | null;
- /**
- * 创建者Id
- * @type {number}
- * @memberof UpdateTenantInput
- */
- createUserId?: number | null;
- /**
- * 修改者Id
- * @type {number}
- * @memberof UpdateTenantInput
- */
- updateUserId?: number | null;
- /**
- * 软删除
- * @type {boolean}
- * @memberof UpdateTenantInput
- */
- isDelete?: boolean;
- /**
- * 用户Id
- * @type {number}
- * @memberof UpdateTenantInput
- */
- userId?: number;
- /**
- * 机构Id
- * @type {number}
- * @memberof UpdateTenantInput
- */
- orgId?: number;
- /**
- * 主机
- * @type {string}
- * @memberof UpdateTenantInput
- */
- host?: string | null;
- /**
- *
- * @type {TenantTypeEnum}
- * @memberof UpdateTenantInput
- */
- tenantType?: TenantTypeEnum;
- /**
- *
- * @type {DbType}
- * @memberof UpdateTenantInput
- */
- dbType?: DbType;
- /**
- * 数据库连接
- * @type {string}
- * @memberof UpdateTenantInput
- */
- connection?: string | null;
- /**
- * 数据库标识
- * @type {string}
- * @memberof UpdateTenantInput
- */
- configId?: string | null;
- /**
- * 排序
- * @type {number}
- * @memberof UpdateTenantInput
- */
- order?: number;
- /**
- * 备注
- * @type {string}
- * @memberof UpdateTenantInput
- */
- remark?: string | null;
- /**
- *
- * @type {StatusEnum}
- * @memberof UpdateTenantInput
- */
- status?: StatusEnum;
- /**
- * 电子邮箱
- * @type {string}
- * @memberof UpdateTenantInput
- */
- email?: string | null;
- /**
- * 电话
- * @type {string}
- * @memberof UpdateTenantInput
- */
- phone?: string | null;
- /**
- * 租户名称
- * @type {string}
- * @memberof UpdateTenantInput
- */
- name: string;
- /**
- * 管理员名称
- * @type {string}
- * @memberof UpdateTenantInput
- */
- adminName: string;
- }
|