/** * 字典表(Dictionary)实体类 * * @author gonglei * @since 2022-04-18 16:06:57 */ import { AuditingEntity } from '../orm/AuditingEntity'; export declare class Dictionary extends AuditingEntity { /** * DICTIONARY_ID */ dictionaryId: number; /** * 字典名称 */ dictionaryName: string; /** * 选项编码 */ optionCode: string; /** * 选项名称 */ optionName: string; /** * 启用 */ enabled: boolean; /** * 备注 */ remark: string; /** * 租户id */ tenantId: string; }