From 25fb65540710ad0c90cbb0333cacbddef11b3f2b Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Mon, 28 Feb 2022 15:41:49 +0800
Subject: [PATCH] fix 40 to 50
---
gc-core/src/main/java/com/xzx/gc/entity/JhyInfo.java | 3 +++
1 files changed, 3 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 afff5d5..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,11 +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