From 4caf35c0152a2ac3f4d416384e9d8a2b19818363 Mon Sep 17 00:00:00 2001
From: wangmengzhao <1036088376@qq.com>
Date: 星期二, 05 十二月 2023 08:57:58 +0800
Subject: [PATCH] 添加接单超时标识和结单超时标识在iot_device_Order表里面,在对应的类中添加,完成安装单/维修单完成后用户对此单进行打分和评价20231204wmz
---
wumei-smart-master/springboot/wumei-common/src/main/java/com/ruoyi/common/constant/ScheduleConstants.java | 34 ++++++++++++++++++++--------------
1 files changed, 20 insertions(+), 14 deletions(-)
diff --git a/wumei-smart-master/springboot/wumei-common/src/main/java/com/ruoyi/common/constant/ScheduleConstants.java b/wumei-smart-master/springboot/wumei-common/src/main/java/com/ruoyi/common/constant/ScheduleConstants.java
index 62ad815..0af14ad 100644
--- a/wumei-smart-master/springboot/wumei-common/src/main/java/com/ruoyi/common/constant/ScheduleConstants.java
+++ b/wumei-smart-master/springboot/wumei-common/src/main/java/com/ruoyi/common/constant/ScheduleConstants.java
@@ -2,30 +2,38 @@
/**
* 浠诲姟璋冨害閫氱敤甯搁噺
- *
+ *
* @author ruoyi
*/
-public class ScheduleConstants
-{
+public class ScheduleConstants {
public static final String TASK_CLASS_NAME = "TASK_CLASS_NAME";
- /** 鎵ц鐩爣key */
+ /**
+ * 鎵ц鐩爣key
+ */
public static final String TASK_PROPERTIES = "TASK_PROPERTIES";
- /** 榛樿 */
+ /**
+ * 榛樿
+ */
public static final String MISFIRE_DEFAULT = "0";
- /** 绔嬪嵆瑙﹀彂鎵ц */
+ /**
+ * 绔嬪嵆瑙﹀彂鎵ц
+ */
public static final String MISFIRE_IGNORE_MISFIRES = "1";
- /** 瑙﹀彂涓�娆℃墽琛� */
+ /**
+ * 瑙﹀彂涓�娆℃墽琛�
+ */
public static final String MISFIRE_FIRE_AND_PROCEED = "2";
- /** 涓嶈Е鍙戠珛鍗虫墽琛� */
+ /**
+ * 涓嶈Е鍙戠珛鍗虫墽琛�
+ */
public static final String MISFIRE_DO_NOTHING = "3";
- public enum Status
- {
+ public enum Status {
/**
* 姝e父
*/
@@ -37,13 +45,11 @@
private String value;
- private Status(String value)
- {
+ private Status(String value) {
this.value = value;
}
- public String getValue()
- {
+ public String getValue() {
return value;
}
}
--
Gitblit v1.8.0