UNIVPLMDataIntegration/Web/src/api-services/models/sys-dict-data.ts

182 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 { StatusEnum } from './status-enum';
/**
*
*
* @export
* @interface SysDictData
*/
export interface SysDictData {
/**
* Id
*
* @type {number}
* @memberof SysDictData
*/
id?: number;
/**
*
*
* @type {Date}
* @memberof SysDictData
*/
createTime?: Date;
/**
*
*
* @type {Date}
* @memberof SysDictData
*/
updateTime?: Date | null;
/**
* Id
*
* @type {number}
* @memberof SysDictData
*/
createUserId?: number | null;
/**
*
*
* @type {string}
* @memberof SysDictData
*/
createUserName?: string | null;
/**
* Id
*
* @type {number}
* @memberof SysDictData
*/
updateUserId?: number | null;
/**
*
*
* @type {string}
* @memberof SysDictData
*/
updateUserName?: string | null;
/**
*
*
* @type {boolean}
* @memberof SysDictData
*/
isDelete?: boolean;
2024-06-15 13:02:35 +08:00
/**
* Id
*
* @type {number}
* @memberof SysDictData
*/
tenantId?: number | null;
2024-06-15 13:02:35 +08:00
/**
* Id
*
* @type {number}
* @memberof SysDictData
*/
dictTypeId?: number;
/**
*
*
* @type {string}
* @memberof SysDictData
*/
value: string;
/**
*
*
* @type {string}
* @memberof SysDictData
*/
code: string;
/**
*
*
* @type {string}
* @memberof SysDictData
*/
name?: string | null;
/**
* -
*
* @type {string}
* @memberof SysDictData
*/
tagType?: string | null;
/**
* -Style()
*
* @type {string}
* @memberof SysDictData
*/
styleSetting?: string | null;
/**
* -Class()
*
* @type {string}
* @memberof SysDictData
*/
classSetting?: string | null;
/**
*
*
* @type {number}
* @memberof SysDictData
*/
orderNo?: number;
/**
*
*
* @type {string}
* @memberof SysDictData
*/
remark?: string | null;
/**
* ()
*
* @type {string}
* @memberof SysDictData
*/
extData?: string | null;
/**
* @type {StatusEnum}
* @memberof SysDictData
*/
status?: StatusEnum;
}