From f63d3a3be83fea258e7920efccd2567b6a511bb3 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期四, 16 一月 2025 16:52:46 +0800 Subject: [PATCH] 最新版本541200007 --- server/system_service/src/main/java/com/doumee/core/utils/Constants.java | 54 +++++++++++++++++++++++++++++++++++++++--------------- 1 files changed, 39 insertions(+), 15 deletions(-) diff --git a/server/system_service/src/main/java/com/doumee/core/utils/Constants.java b/server/system_service/src/main/java/com/doumee/core/utils/Constants.java index 0f1bd6f..19f29d6 100644 --- a/server/system_service/src/main/java/com/doumee/core/utils/Constants.java +++ b/server/system_service/src/main/java/com/doumee/core/utils/Constants.java @@ -1,27 +1,17 @@ package com.doumee.core.utils; -import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; -import com.doumee.core.model.LoginUserInfo; 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 io.swagger.models.auth.In; -import org.apache.batik.util.Platform; +import net.sourceforge.pinyin4j.PinyinHelper; import org.apache.commons.lang3.StringUtils; -import org.springframework.util.CollectionUtils; import java.io.IOException; import java.math.BigDecimal; -import java.net.URLDecoder; -import java.net.URLEncoder; +import java.text.Collator; import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Date; -import java.util.List; -import java.util.Random; import java.util.*; import java.util.Date; import java.util.regex.Matcher; @@ -151,8 +141,16 @@ public static final String HK_WXTOKEN_CONFIGID ="HK_WXTOKEN_CONFIGID" ; public static final String HK_WXTOKEN_TAGID ="HK_WXTOKEN_TAGID" ; public static final String WMS_TOTAL_STOCK_NUM ="WMS_TOTAL_STOCK_NUM" ; + public static final String WMS_LIQUID_LEVEL ="WMS_LIQUID_LEVEL" ; + public static final String WMS_PRESSURE_LEVEL ="WMS_PRESSURE_LEVEL" ; public static final String WX_REDIRECT_URL = "WX_REDIRECT_URL"; public static final String HK_CHANGNEI_SCREEN_INDEXCODES = "HK_CHANGNEI_SCREEN_INDEXCODES"; + public static final String CITY_XH_REASON_ID ="CITY_XH_REASON_ID" ; + public static final String ATWL_XH_PLATFORM_ID ="ATWL_XH_PLATFORM_ID" ; + public static final String SCREEN_SEVENT_ARRIVAL_STARTDATE = "SCREEN_SEVENT_ARRIVAL_STARTDATE"; + public static final String EARLY_START_WX_NOTICE = "EARLY_START_WX_NOTICE"; + public static final String OVER_NOTICE_WX = "OVER_NOTICE_WX"; + public static boolean DEALING_HK_SYNCPRIVILEGE= false; public static boolean DEALING_HK_SYNCDEVICE = false; public static boolean DEALING_HK_SYNCPLATFORM = false; @@ -543,10 +541,15 @@ } + /** + * 杩愬崟浜嗗崟浣嶇被鍨� 0涓囨敮 1绠� + */ + public static final int UNIT_TYPE =1; public interface memberType{ int driver = 0;//鍙告満浜哄憳 int visitor = 1;//鏅�氳瀹� int internal = 2;//鍐呴儴浜哄憳 + int gkuser = 3;//绠℃帶浜哄憳锛堣繍鍗曟煡璇級 } @@ -673,8 +676,10 @@ } public static void main(String[] args) { - System.out.println(Constants.checkCarNo("鐨朅10991")); - System.out.println(Constants.checkCarNo("鐨朅A10991")); + getChinesePingyin("DDaa姹熻悕鐨勫瀵瑰"); +// System.out.println(DateUtil.getShortTime(new Date())); +// System.out.println( "2025-01-14 10:50:56".substring(0,10)); +// System.out.println(Constants.checkCarNo("鐨朅A10991")); // System.out.println(Constants.getVehiclePlateNo("婀楤140D17").getDescription()); // System.out.println(Constants.getVehiclePlateNo("瀹緼P0637").getDescription()); @@ -981,6 +986,25 @@ this.info = info; } } + public static String getChinesePingyin(String chinese) { + if(StringUtils.isBlank(chinese)){ + return null; + } + StringBuilder result = new StringBuilder(); + for (char ch : chinese.toCharArray()) { + String[] pinyinArray = PinyinHelper.toHanyuPinyinStringArray(ch); + + // 濡傛灉瀛楃鏄腑鏂囷紝鍒欒幏鍙栧叾鎷奸煶鐨勯瀛楁瘝 + if (pinyinArray != null && pinyinArray.length > 0) { + result.append(pinyinArray[0].charAt(0)); + } else { + // 闈炰腑鏂囧瓧绗︾洿鎺ユ嫾鎺� + result.append(ch); + } + } + System.out.println(result.toString()); + return result.toString().toUpperCase(); + } /** * 鏈堝彴浣滀笟 鐘舵�� @@ -992,7 +1016,7 @@ WAIT_CALL(2, "宸茬鍒�","宸茬鍒�"), IN_WAIT(3, "鍏ュ洯绛夊緟","鍏ュ洯绛夊緟" ), CALLED(4, "宸插彨鍙�","宸插彨鍙�" ), - WORKING(5, "浣滀笟涓�","浣滀笟涓�" ), + WORKING(5, "浣滀笟涓�","浣滀笟涓�" ), DONE(6, "浣滀笟瀹屾垚 ","浣滀笟瀹屾垚" ), TRANSFERING(7, "杞Щ涓�","杞Щ涓�" ), EXCEPTION(8, "寮傚父鎸傝捣","寮傚父鎸傝捣" ), -- Gitblit v1.9.3