feat: ops字典添加

This commit is contained in:
lzh
2026-02-03 15:35:03 +08:00
parent afa6949ff1
commit feb196ead8

View File

@@ -173,6 +173,15 @@ const IOT_DICT = {
IOT_VALIDATE_TYPE: 'iot_validate_type', // IOT 数据校验级别
} as const;
/** ========== OPS - 运维中心模块 ========== */
const OPS_DICT = {
OPS_ORDER_TYPE: 'ops_order_type', // 工单类型
OPS_ORDER_STATUS: 'ops_order_status', // 工单状态
OPS_ORDER_PRIORITY: 'ops_order_priority', // 工单优先级
OPS_CLEANING_TYPE: 'ops_cleaning_type', // 保洁类型
OPS_TRIGGER_SOURCE: 'ops_trigger_source', // 触发来源
} as const;
/** 字典类型枚举 - 统一导出 */
const DICT_TYPE = {
...AI_DICT,
@@ -187,6 +196,7 @@ const DICT_TYPE = {
...MALL_DICT,
...SYSTEM_DICT,
...COMMON_DICT,
...OPS_DICT,
} as const;
export { DICT_TYPE };