From 6648e74a007254e167c5508de5d25402cd4bb63b Mon Sep 17 00:00:00 2001 From: zhuguifei <zhuguifei@zhuguifeideiMac.local> Date: 星期一, 10 三月 2025 16:39:50 +0800 Subject: [PATCH] 完成保养工单明细 --- eims/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/constant/DictConstants.java | 62 +++++++++++++++++++++++++++++++ 1 files changed, 62 insertions(+), 0 deletions(-) diff --git a/eims/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/constant/DictConstants.java b/eims/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/constant/DictConstants.java index 878a0bb..bb8dca6 100644 --- a/eims/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/constant/DictConstants.java +++ b/eims/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/constant/DictConstants.java @@ -19,6 +19,7 @@ * 鎶ヤ慨鐘舵�� */ String REPAIR_REQ_STATUS = "repair_req_status"; + interface REPAIR_REQ_STATUS_DETAIL { /** * 宸叉帴鍗� @@ -38,6 +39,7 @@ * 缁翠慨宸ュ崟鐘舵�� */ String REPAIR_RES_STATUS = "repair_res_status"; + interface REPAIR_RES_STATUS_DETAIL { /** * 鎺ュ崟 @@ -58,6 +60,7 @@ * 缁翠慨宸ュ崟鐘舵�� */ String REPAIR_RECORD_HANDLE = "repair_record_handle"; + interface REPAIR_RECORD_HANDLE_DETAIL { /** * 鏂板 @@ -79,4 +82,63 @@ String WANCHENG = "4"; } + /** + * 淇濆吇鏃堕棿璁$畻瑙勫垯 + */ + String MAINT_TIME_RULE = "maint_time_rule"; + + interface MAINT_TIME_RULE_DETAIL { + /** + * 鎸夊浐瀹氬懆鏈� + */ + String CYCLE = "0"; + /** + * 鎸変笂娆′繚鍏绘椂闂� + */ + String LAST = "1"; + } + + /** + * 绯荤粺鏄剧ず闅愯棌 + */ + String SYS_NORMAL_DISABLE = "sys_normal_disable"; + + interface SYS_NORMAL_DISABLE_DETAIL { + String NORMAL = "0"; + String DISABLE = "1"; + } + + /** + * 淇濆吇鏃堕棿鍗曚綅 + */ + String MAINT_CYCLE_UNIT = "maint_cycle_unit"; + + interface MAINT_CYCLE_UNIT_DETAIL { + String DAY = "1"; + String WEEK = "2"; + String MONTH = "3"; + String SEASON = "4"; + String YEAR = "5"; + } + + /** + * 淇濆吇宸ュ崟鐘舵�� + */ + String MAINT_ORDER_STATUS = "maint_order_status"; + + interface MAINT_ORDER_STATUS_DETAIL { + String BAOYANG = "1";// 淇濆吇缁� + String DAIBAOYANG = "0"; // 寰呬繚鍏� + String DAIYANZHENG = "2"; // 寰呴獙璇� + String WANCHENG = "3"; // 瀹屾垚 + } + + /** + * 淇濆吇宸ュ崟椤瑰畬鎴愮姸鎬� + */ + String EIMS_ORDITM_STATUS = "eims_orditm_status"; + interface EIMS_ORDITM_STATUS_DETAIL { + String WEIWANCHENG = "0";// 鏈畬鎴� + String YIWANCHENG = "1"; // 宸插畬鎴� + } } -- Gitblit v1.9.3