From c2cdc5a3def0fb52583cbb28788310afe679e4ee Mon Sep 17 00:00:00 2001 From: k94314517 <8417338+k94314517@user.noreply.gitee.com> Date: 星期四, 21 三月 2024 18:26:26 +0800 Subject: [PATCH] git ch --- server/service/src/main/java/com/doumee/core/utils/Constants.java | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 104 insertions(+), 1 deletions(-) diff --git a/server/service/src/main/java/com/doumee/core/utils/Constants.java b/server/service/src/main/java/com/doumee/core/utils/Constants.java index 8b22c7f..c7962f9 100644 --- a/server/service/src/main/java/com/doumee/core/utils/Constants.java +++ b/server/service/src/main/java/com/doumee/core/utils/Constants.java @@ -439,6 +439,14 @@ CA_APPLY_JIAJIAN_SIGN(13, "鍔犲噺淇濈敵璇风绔犳枃浠�", "鍔犲噺淇濈敵璇风绔犳枃浠�"), CA_APPLY_CHANGEUNIT_SIGN(14, "鎹㈠巶鐢宠绛剧珷鏂囦欢", "鎹㈠巶鐢宠绛剧珷鏂囦欢"), + HBD_BD_APPLY_PDF(15, "鍚堝苟鍗�-淇濆崟鐢宠琛≒DF ", "鍚堝苟鍗�-淇濆崟鐢宠琛≒DF "), + HBD_BD_SIGNED_PDF(16, "鍚堝苟鍗�-绛剧讲鍚庝繚鍗曠敵璇疯〃PDF", "鍚堝苟鍗�-绛剧讲鍚庝繚鍗曠敵璇疯〃PDF"), + + + + + + ; // 鎴愬憳鍙橀噺 @@ -566,7 +574,7 @@ SYSTEM(0, "绯荤粺鐢ㄦ埛", "绠$悊鍛�",Arrays.asList(0,1,2,3,4,5,6,7,8,9,10,11)), COMPANY(1, "浼佷笟鐢ㄦ埛", "浼佷笟",Arrays.asList(-1)), - ZHUBO(2, "涓绘挱", "涓绘挱",Arrays.asList(-1)), + ZHUBO(2, "鍟嗘埛", "鍟嗘埛",Arrays.asList(-1)), ; // 鎴愬憳鍙橀噺 private String name; @@ -846,6 +854,101 @@ } } + public enum UnionApplyStatus { + MERGE(1, "寰呬笂浼犱繚鍗�","",0), + WAIT_SIGNATURE(2, "寰呯缃�","",0), + UPLOAD_INSURANCE_POLICY(3, "寰呬笂浼犱繚鍗�","",0), + FINISH(4, "淇濋殰涓�","",0), + CLOSE(5, "鍏抽棴","",0), + ; + // 鎴愬憳鍙橀噺 + private String name; + private String info; + private int key; + private int collectStatus; + + + // 鏋勯�犳柟娉� + UnionApplyStatus(int key, String name,String info,int collectStatus) { + this.name = name; + this.key = key; + this.info = info; + this.collectStatus = collectStatus; + } + + // 鏅�氭柟娉� + public static String getName(int index) { + for (UnionApplyStatus c : UnionApplyStatus.values()) { + if (c.getKey() == index) { + return c.name; + } + } + return null; + } + public static List<Integer> getKesByStatus(Integer collectStatus) { + List<Integer> list = new ArrayList<>(); + if(collectStatus!=null){ + for (UnionApplyStatus c : UnionApplyStatus.values()) { + if (Constants.equalsInteger(c.getCollectStatus() ,collectStatus)) { + list.add(c.getKey()); + } + } + } + return list; + } + public static Integer getCollectStatus(Integer index) { + for (UnionApplyStatus c : UnionApplyStatus.values()) { + if (Constants.equalsInteger(c.getKey() , index)) { + return c.collectStatus; + } + } + return null; + } + public static String getInfo(int index) { + for (UnionApplyStatus c : UnionApplyStatus.values()) { + if (c.getKey() == index) { + return c.info; + } + } + return null; + } + + // get set 鏂规硶 + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getKey() { + return key; + } + + public void setKey(int key) { + this.key = key; + } + + public String getInfo() { + return info; + } + + public void setInfo(String info) { + this.info = info; + } + + public int getCollectStatus() { + return collectStatus; + } + + public void setCollectStatus(int collectStatus) { + this.collectStatus = collectStatus; + } + } + + + public enum InsuranceApplyStatus { UPLOAD(0, "鎻愪氦鎶曚繚","",0), PLATFORM_RETURN(1, "瀹℃牳涓嶉�氳繃","鎻愪氦鎰忚锛�${param}",4), -- Gitblit v1.9.3