From d397b54e3924c55e80782a80d9f19d616d40ccba Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 29 Jun 2021 16:53:40 +0800 Subject: [PATCH] Merge branch 'score-shop' of http://120.27.238.55:7000/r/xzx into score-shop --- gc-core/src/main/java/com/xzx/gc/entity/JhyInfo.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/gc-core/src/main/java/com/xzx/gc/entity/JhyInfo.java b/gc-core/src/main/java/com/xzx/gc/entity/JhyInfo.java index c4f3209..3984fcb 100644 --- a/gc-core/src/main/java/com/xzx/gc/entity/JhyInfo.java +++ b/gc-core/src/main/java/com/xzx/gc/entity/JhyInfo.java @@ -32,10 +32,14 @@ * 是否集物员 1-是 2-否 */ private String isJhy; + public static final String IS_JHY_Y = "1"; + public static final String IS_JHY_N = "2"; /** * 审核状态 1-待审核 2-审核通过 3-审核拒绝 */ private Integer status; + public static final Integer CHECK_WAIT = 1; public static final Integer CHECK_PASS = 2; + public static final Integer CHECK_REFUSE = 3; } -- Gitblit v1.9.1