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

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