/** * @description: 业务字典列表查询参数 */ export interface DictListParamsModel { // 父主键 code?: string // 父主键 parentId?: string // size size?: number } /** * @description: 业务字典 */ export interface DictModel { // 主键 id?: string // 字典码 code?: string // 字典值 dictKey?: String // 字典名称 dictValue?: string }