44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
|
|
import type { ReqPage } from "@/api/interface";
|
|||
|
|
|
|||
|
|
export namespace Dict {
|
|||
|
|
|
|||
|
|
export interface ResDictType {
|
|||
|
|
id: string; // 字典类型表Id
|
|||
|
|
name: string; // 名称
|
|||
|
|
code: string; // 编码
|
|||
|
|
sort: number; // 排序
|
|||
|
|
openLevel: number; // 开启等级:0-不开启;1-开启,默认不开启
|
|||
|
|
openDescribe: number; // 开启描述:0-不开启;1-开启,默认不开启
|
|||
|
|
remark?: string | null; // 描述
|
|||
|
|
state: number; // 状态:0-删除 1-正常
|
|||
|
|
createBy?: string | null; // 创建用户
|
|||
|
|
createTime?: string | null; // 创建时间
|
|||
|
|
updateBy?: string | null; // 更新用户
|
|||
|
|
updateTime?: string | null; // 更新时间
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
export interface ReqDictTypeParams extends ReqPage{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
export interface ResDictData {
|
|||
|
|
id: string; // 字典数据表Id
|
|||
|
|
typeId: string; // 字典类型表Id
|
|||
|
|
name: string; // 名称
|
|||
|
|
code: string; // 编码
|
|||
|
|
sort: number; // 排序
|
|||
|
|
level?: number | null; // 事件等级:0-普通;1-中等;2-严重 (默认为0)
|
|||
|
|
algoDescribe?: number | null; // 与高级算法内部Id描述对应
|
|||
|
|
value?: string | null; // 字典针对电压等级
|
|||
|
|
state: number; // 状态:0-删除 1-正常
|
|||
|
|
createBy?: string | null; // 创建用户
|
|||
|
|
createTime?: string | null; // 创建时间
|
|||
|
|
updateBy?: string | null; // 更新用户
|
|||
|
|
updateTime?: string | null; // 更新时间
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
export interface ReqDictDataParams extends ReqPage{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|