From 26a5fcd889f8650d28e56a87de3f9c3b48c5bbfb Mon Sep 17 00:00:00 2001 From: lishuai <260038442@qq.com> Date: 星期三, 20 十二月 2023 17:12:22 +0800 Subject: [PATCH] 前端调试,字段调整 --- server/dmvisit_service/src/main/java/com/doumee/core/utils/Constants.java | 176 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 174 insertions(+), 2 deletions(-) diff --git a/server/dmvisit_service/src/main/java/com/doumee/core/utils/Constants.java b/server/dmvisit_service/src/main/java/com/doumee/core/utils/Constants.java index 924cb84..e1ea0ee 100644 --- a/server/dmvisit_service/src/main/java/com/doumee/core/utils/Constants.java +++ b/server/dmvisit_service/src/main/java/com/doumee/core/utils/Constants.java @@ -1,12 +1,21 @@ package com.doumee.core.utils; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.PropertyNamingStrategy; import org.apache.commons.lang3.StringUtils; +import java.io.IOException; import java.math.BigDecimal; import java.net.URLDecoder; import java.text.SimpleDateFormat; +import java.util.Arrays; import java.util.Date; +import java.util.List; +import java.util.regex.Matcher; +import java.util.regex.Pattern; public class Constants { @@ -31,7 +40,47 @@ public static final String MDJ_LW_REQUIRED = "MDJ_LW_REQUIRED"; public static final String MDJ_VISIT_REQUIRED = "MDJ_VISIT_REQUIRED"; public static final String EDS_PWD ="!@#$%^&QWERTY" ; + public static final String ROOT_PATH = ""; + public static final String FILE_DIR = ""; + // 璁垮鏉ヨ閰嶇疆 + public static final String VISIT_CONFIG = "VISIT_CONFIG"; + public static final String MEMBER_IMG = "MEMBER_IMG"; + // 鍔冲姟鏉ヨ閰嶇疆 + public static final String LABOR_CONFIG = "LABOR_CONFIG"; + public static final String VISIT_EVENT_IMG = "VISIT_EVENT_IMG"; + public static final String CAR_EVENT_IMG = "CAR_EVENT_IMG"; + public static final String DEVICE_EVENT_IMG = "DEVICE_EVENT_IMG"; + public static final String FTP ="FTP" ; + public static final String FTP_HOST ="FTP_HOST" ; + public static final String FTP_PORT ="FTP_PORT" ; + public static final String FTP_USERNAME ="FTP_USERNAME" ; + public static final String FTP_PWD ="FTP_PWD" ; + public static final String FTP_RESOURCE_PATH ="FTP_RESOURCE_PATH" ; + public static final String ERP_ORGLIST_URL ="ERP_ORGLIST_URL" ; + public static final String ERP_USERLIST_URL ="ERP_USERLIST_URL" ; + public static final String ERP_APPROVE_URL ="ERP_APPROVE_URL" ; + public static final String ERP_USERSTATUS_RL ="ERP_USERSTATUS_RL" ; + public static final String ERP ="ERP" ; + public static final Integer THREE =3 ; + public static boolean DEALING_HK_SYNCPRIVILEGE= false; + public static boolean DEALING_HK_SYNCDEVICE = false; + public static boolean DEALING_HK_SYNCPARK = false; + public static boolean DEALING_HK_IMG = false; + public static boolean DEALING_HK_ORG = false; + public static boolean DEALING_HK_USER = false; + public static boolean DEALING_HK_VISIT = false; + public static boolean DEALING_HK_EMPOWER = false; + public static boolean DEALING_HK_EMPOWER_DETAIL = false; + public static boolean DEALING_HK_EMPOWER_RESULT = false; + public static boolean DEALING_HK_PARKBOOK = false; + // ERP鎺ュ彛閰嶇疆 + public static final String ERP_CONFIG = "ERP_CONFIG"; + // ERP ACCESS_KEY + public static final String ERP_ACCESS_KEY = "ERP_ACCESS_KEY"; + // ERP ACCESS_SECRET + public static final String ERP_ACCESS_SECRET = "ERP_ACCESS_SECRET"; + // FTP鏂囦欢鏈嶅姟鍣ㄨ祫婧愯闂湴鍧� public static Date getBirthdyByCardNo(String idCard){ if(idCard ==null || idCard.length()<14){ @@ -43,10 +92,33 @@ try { birthday = dateFormat.parse(birthdayString); } catch (Exception e) { - throw new RuntimeException(e); +// throw new RuntimeException(e); } return birthday; } + public static Integer getSexByCardNo(String idCard){ + if(idCard ==null || idCard.length()<17){ + return null; + } + String str = idCard.substring(16, 17); // 鎴彇韬唤璇佸彿鐨勫墠鍏綅鏁板瓧浣滀负鍑虹敓鏃ユ湡 + try { + Integer num = Integer.parseInt(str); + return (num % 2 !=0) ? 1:2 ; + } catch (Exception e) { + } + return null; + } + + /** + * 鍒ゆ柇鏄惁涓烘湁鏁堣溅鐗屽彿 + */ + public static boolean checkCarNo(String str) { + String patt="^[浜触娌唨鏅嬭窘鍚夐粦鑻忔禉鐨栭椊璧i瞾璞剛婀樼菠妗傜惣宸濋粩浜戞笣钘忛檿闄囬潚瀹佹柊闂界菠鏅嬬惣浣块A_Z]{1}[A_Z]{1}[A-Z0-9]{4}[A-Z0-9鎸傚璀︽腐婢砞{1}$"; + Pattern r = Pattern.compile(patt); + Matcher matcher = r.matcher(str); + return matcher.find(); + } + public static String getTuominStr(String s){ if(StringUtils.isEmpty(s)){ return ""; @@ -87,6 +159,26 @@ int fk = 1;//鏅�氳瀹� int nb = 2;//鍐呴儴璁垮 } + public interface VisitStatus{ + //瀹℃牳鐘舵�� 0寰呭鏍� 1宸叉彁浜RP瀹℃壒 2瀹℃牳閫氳繃 3瀹℃牳涓嶉�氳繃 4鍙栨秷 5涓嬪彂鎴愬姛 6涓嬪彂澶辫触 7宸茬绂� + int waitCheck = 0; + int submitCheck = 1; + int pass = 2; + int noPass = 3; + int cancel = 4; + int xfSuccess = 5; + int xfFail = 6; + int signout = 7; + } + public interface EmpowerStatus{ + //涓�鍗¢�氭巿鏉冧笅鍙戠姸鎬� 0寰呬笅鍙� 1宸蹭笅鍙� 2涓嬪彂鎴愬姛 3宸插彇娑� 4涓嬪彂澶辫触 5浠诲姟涓嬭浇宸茬粨鏉� + int wait = 0; + int ing = 1; + int pass = 2; + int cancel = 3; + int fail = 4; + int downloaded = 5; + } public interface DOOR_ROLE_TYPE{ int lw = 0; int fk = 1; @@ -98,7 +190,6 @@ public static final String ACCESS_ID="ACCESS_ID"; public static final String BUCKETNAME = "BUCKETNAME"; public static final String OSS = "OSS"; - public static final String COFFEE_ARTICLE = "COFFEE_ARTICLE"; public static final String ACCESS_KEY = "ACCESS_KEY"; public static final String ENDPOINT = "ENDPOINT"; @@ -114,7 +205,20 @@ + public static final String WX_PLATFORM = "WX_PLATFORM"; + public static final String WX_PLATFORM_ACCESS_TOKEN = "WX_PLATFORM_ACCESS_TOKEN"; + public static final String WX_PLATFORM_APPID = "WX_PLATFORM_APPID"; + public static final String WX_PLATFORM_SECRET = "WX_PLATFORM_SECRET"; + + + + + + public interface RedisKeys { + public static final String ERP_TOKEN ="ERP_TOKEN"; + public static final long EXPIRE_TIME = 7200; + public static final String GOODSORDER_KEY = "ordercode_"; public static final String ACTIVITY_SIGN_KEY = "actcode_"; public static final String AFTERSALE_KEY = "salecode_"; @@ -170,9 +274,77 @@ return d.longValue(); } + +public interface memberType{ + int lw_visitor = 0;//鍔冲姟璁垮 + int visitor = 1;//鏅�氳瀹� + int internal = 2;//鍐呴儴浜哄憳 +} public static void main(String[] args) { String t = URLDecoder.decode("https://lsqw.gtja.com/qwcos/v-index.html#/loginforProperty?corpId=ww4b7aefafeb430e4b&corpId=ww4b7aefafeb430e4b&agentId=1000005&agentId=1000005&fromRoute=&userCode=013561&userCode=&userId=zz&userId=&encryptUserCode=&custQwId=wmIUuSDgAAR8MhtVY8w90EyKltvoK5fA&custCode=&openId=op1wZwD1dKuBQywmWWS5957zUOJI&name=%E8%B9%84%E8%B9%84&headUrl=http%3A%2F%2Fwx.qlogo.cn%2Fmmhead%2FQ3auHgzwzM4QlibSOAvYcvRMdsoyF3Ua7duLOYSJfB3dsGsYxIYonBw%2F0&dbHeadUrl=https%3A%2F%2Ftgf.gtja.com%2Ff%2F%2Fqwoms%2F2022512%2Fqwoms_1652332606613_8.jpg"); System.out.println(t); } + + + /** + * 鏁版嵁鐘舵�佹灇涓� + * + */ + public enum Status { + + /** 鐢ㄦ埛鍚敤绂佺敤鏋氫妇鍊�*/ + ENABLE(0,"姝e父"), + DISABLE(1,"绂佺敤"), + FREEZE(2,"鎷夐粦/鍐荤粨"); + + private Integer value; + private String des; + + + Status(Integer value, String des) { + this.value = value; + this.des = des; + } + + public Integer getValue() { + return value; + } + + public void setValue(Integer value) { + this.value = value; + } + + public String getDes() { + return des; + } + + public void setDes(String des) { + this.des = des; + } + } + + /** + * 瀵硅薄椹煎嘲灞炴�ц浆涓嬪垝绾� + * @param object + * @return + * @throws JsonProcessingException + */ + public static String toUnderlineJSONString(Object object) throws JsonProcessingException { + ObjectMapper mapper = new ObjectMapper(); + mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); + mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); + String reqJson = mapper.writeValueAsString(object); + return reqJson; + } + + + public static <T> T toSnakeObject(String json, Class<T> clazz) throws IOException { + ObjectMapper mapper = new ObjectMapper(); + mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); + T reqJson = mapper.readValue(json, clazz); + return reqJson; + } + + } -- Gitblit v1.9.3