server/system_service/src/main/java/com/doumee/core/utils/DateUtil.java
@@ -2402,6 +2402,16 @@ return new Timestamp(System.currentTimeMillis()); } } public static Date getDateFromString2(String strDate) { if (StringUtils.isEmpty(strDate)) { return null; } try { return sdfLongTimePlus.parse(strDate); } catch (Exception ex) { return null; } } // -----------------------------------------------------------------------