From cccaf417bc5cb4a9c3fa925d491ca7c1e5621a0c Mon Sep 17 00:00:00 2001 From: futian.liu <liufutianyoo@163.com> Date: 星期一, 11 十二月 2023 11:12:39 +0800 Subject: [PATCH] 还原测试类 --- consum-base/src/main/java/com/consum/base/Constants.java | 21 +++++++++++++++++---- 1 files changed, 17 insertions(+), 4 deletions(-) diff --git a/consum-base/src/main/java/com/consum/base/Constants.java b/consum-base/src/main/java/com/consum/base/Constants.java index 32c7e8c..93fead0 100644 --- a/consum-base/src/main/java/com/consum/base/Constants.java +++ b/consum-base/src/main/java/com/consum/base/Constants.java @@ -48,9 +48,22 @@ public static final Integer LEVELS_TWO = 2; public static final Integer LEVELS_THREE = 3; - //鐗╁搧鍒嗙被STATES 1=姝e父锛�2=绂佺敤锛�3=宸插垹闄� - public static final Integer CATEGORY_ENABLE = 1; - public static final Integer CATEGORY_DISABLE = 2; - public static final Integer CATEGORY_DELETED = 3; + //STATES 1=姝e父锛�2=绂佺敤锛�3=宸插垹闄� + public static final Integer STATES_ENABLE = 1; + public static final Integer STATES_DISABLE = 2; + public static final Integer STATES_DELETED = 3; + + //is_delete 閫昏緫鍒犻櫎(0 鍚� 1 鏄�) + public static final Integer IS_DELETE_NO = 0; + public static final Integer IS_DELETE_YES = 1; + + //WAREHOUSE_TYPE 1鏈烘瀯浠撳簱2閮ㄩ棬浠撳簱 + public static final Integer WAREHOUSE_TYPE_TENANT = 1; + public static final Integer WAREHOUSE_TYPE_DEPT = 2; + + //IS_DEFAULT 1=鏄紱2=鍚� + public static final Integer IS_DEFAULT_YES = 1; + public static final Integer IS_DEFAULT_NO = 2; + } -- Gitblit v1.9.1