From b4eb1b683886899c4914f2a97961144624c46c74 Mon Sep 17 00:00:00 2001 From: renkang <8417338+k94314517@user.noreply.gitee.com> Date: 星期四, 21 十一月 2024 18:36:02 +0800 Subject: [PATCH] 设备、巡检任务业务 --- server/system_service/src/main/java/com/doumee/core/utils/Constants.java | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/server/system_service/src/main/java/com/doumee/core/utils/Constants.java b/server/system_service/src/main/java/com/doumee/core/utils/Constants.java index 201033d..9113018 100644 --- a/server/system_service/src/main/java/com/doumee/core/utils/Constants.java +++ b/server/system_service/src/main/java/com/doumee/core/utils/Constants.java @@ -222,7 +222,13 @@ int sgscxh = 4; } - + public interface patrolTaskStatus{ + int waitStart = 0; + int working= 1; + int timeout = 2; + int finish =3; + int cancel =4; + } public static Date getBirthdyByCardNo(String idCard){ if(idCard ==null || idCard.length()<14){ return null; @@ -453,6 +459,7 @@ public static final String GOODSORDER_KEY = "ordercode_"; public static final String ACTIVITY_SIGN_KEY = "actcode_"; public static final String AFTERSALE_KEY = "salecode_"; + public static final String PATROL_SCHEME_CODE_KEY = "patrolSchemeCode"; } -- Gitblit v1.9.3