UNIVPLMDataIntegration/Web/src/api-services/models/add-tenant-input.ts

212 lines
3.8 KiB
TypeScript
Raw Normal View History

2024-06-15 13:02:35 +08:00
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 AddTenantInput
*/
export interface AddTenantInput {
/**
* Id
*
* @type {number}
* @memberof AddTenantInput
*/
id?: number;
/**
*
*
* @type {Date}
* @memberof AddTenantInput
*/
createTime?: Date;
/**
*
*
* @type {Date}
* @memberof AddTenantInput
*/
updateTime?: Date | null;
/**
* Id
*
* @type {number}
* @memberof AddTenantInput
*/
createUserId?: number | null;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
createUserName?: string | null;
/**
* Id
*
* @type {number}
* @memberof AddTenantInput
*/
updateUserId?: number | null;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
updateUserName?: string | null;
/**
*
*
* @type {boolean}
* @memberof AddTenantInput
*/
isDelete?: boolean;
2024-06-15 13:02:35 +08:00
/**
* Id
*
* @type {number}
* @memberof AddTenantInput
*/
userId?: number;
/**
* Id
*
* @type {number}
* @memberof AddTenantInput
*/
orgId?: number;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
host?: string | null;
/**
* @type {TenantTypeEnum}
* @memberof AddTenantInput
*/
tenantType?: TenantTypeEnum;
/**
* @type {DbType}
* @memberof AddTenantInput
*/
dbType?: DbType;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
connection?: string | null;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
configId?: string | null;
/**
* /
*
* @type {string}
* @memberof AddTenantInput
*/
slaveConnections?: string | null;
/**
*
*
* @type {number}
* @memberof AddTenantInput
*/
orderNo?: number;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
remark?: string | null;
/**
* @type {StatusEnum}
* @memberof AddTenantInput
*/
status?: StatusEnum;
2024-10-29 02:35:46 +08:00
/**
*
*
* @type {Date}
* @memberof AddTenantInput
*/
expirationTime?: Date | null;
2024-06-15 13:02:35 +08:00
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
email?: string | null;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
phone?: string | null;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
name: string;
/**
*
*
* @type {string}
* @memberof AddTenantInput
*/
adminAccount: string;
}