UNIVPLMDataIntegration/Web/src/api-services/system/models/login-user-output.ts

175 lines
3.3 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 { AccountTypeEnum } from './account-type-enum';
2025-09-15 03:03:23 +08:00
import { RoleOutput } from './role-output';
2024-06-15 13:02:35 +08:00
/**
*
*
* @export
* @interface LoginUserOutput
*/
export interface LoginUserOutput {
/**
* Id
2024-06-15 13:02:35 +08:00
*
* @type {number}
* @memberof LoginUserOutput
*/
id?: number;
/**
* Id
*
* @type {number}
* @memberof LoginUserOutput
*/
tenantId?: number | null;
2024-06-15 13:02:35 +08:00
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
account?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
realName?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
phone?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
idCardNum?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
email?: string | null;
/**
* @type {AccountTypeEnum}
* @memberof LoginUserOutput
*/
accountType?: AccountTypeEnum;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
avatar?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
introduction?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
address?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
signature?: string | null;
/**
* Id
*
* @type {number}
* @memberof LoginUserOutput
*/
orgId?: number;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
orgName?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
orgType?: string | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
posName?: string | null;
/**
2024-07-22 02:54:41 +08:00
*
2024-06-15 13:02:35 +08:00
*
* @type {Array<string>}
* @memberof LoginUserOutput
*/
2024-07-22 02:54:41 +08:00
apis?: Array<string> | null;
2024-06-15 13:02:35 +08:00
/**
*
*
2025-09-15 03:03:23 +08:00
* @type {Array<RoleOutput>}
2024-06-15 13:02:35 +08:00
* @memberof LoginUserOutput
*/
2025-09-15 03:03:23 +08:00
roles?: Array<RoleOutput> | null;
/**
*
*
* @type {string}
* @memberof LoginUserOutput
*/
watermarkText?: string | null;
2024-06-15 13:02:35 +08:00
}