From 47f0aa8aeda7a5a6984b04888c40b5cf86e33c8e Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期二, 10 十月 2023 16:08:29 +0800 Subject: [PATCH] 骑行时长减免和强制还车 --- server/services/src/main/java/com/doumee/core/constants/Constants.java | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/server/services/src/main/java/com/doumee/core/constants/Constants.java b/server/services/src/main/java/com/doumee/core/constants/Constants.java index 4777737..dab6d7a 100644 --- a/server/services/src/main/java/com/doumee/core/constants/Constants.java +++ b/server/services/src/main/java/com/doumee/core/constants/Constants.java @@ -139,6 +139,52 @@ String rent = "RENT"; } + public interface ActionLogObjType { + int memberrides =0;//楠戣璁板綍 + + } + + public enum ACTIONLOG_TYPE{ + // 0楠戣璁板綍 + FORCE_BACK(0,"寮哄埗杩樿溅","鍚庡彴寮哄埗杩樿溅"), + UPDATE_DURATION(1,"淇敼楠戣鏃堕暱","鍚庡彴淇敼楠戣鏃堕暱") + ; + String name; + + Integer key; + + String info; + + ACTIONLOG_TYPE(Integer key,String name, String info) { + this.name = name; + this.key = key; + this.info = info; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Integer getKey() { + return key; + } + + public void setKey(Integer key) { + this.key = key; + } + + public String getInfo() { + return info; + } + + public void setInfo(String info) { + this.info = info; + } + } public enum GOODSORDER_STATUS{ // 0寰呮敮浠� 1宸叉敮浠� 2宸插彇娑� 3鏀粯澶辫触 4宸茬粨绠� UN_PAY("寰呮敮浠�", 0,"寰呮敮浠�"), -- Gitblit v1.9.3