田源
2024-04-10 1bd4203a391832f1f1217e08753b4ed570db3f3d
Source/platformProject/vci-platform-web/src/main/java/com/vci/web/util/DateUtil.java
@@ -631,4 +631,16 @@
      return NumberUtil.toInt(format(new Date(), "HH"));
   }
   /**
    * 时间戳转换为Date
    * @return
    */
   public static Date parseByLong(Long dateLong, ConcurrentDateFormat format){
      try {
         return format.parse(format.format(new Date(dateLong)));
      } catch (ParseException e) {
         throw Exceptions.unchecked(e);
      }
   }
}