LAPTOP-KB9HII50\70708 пре 1 година
родитељ
комит
3fe40e278d
1 измењених фајлова са 5 додато и 0 уклоњено
  1. 5 0
      common/common-util/src/main/java/com/yihu/jw/util/date/DateUtil.java

+ 5 - 0
common/common-util/src/main/java/com/yihu/jw/util/date/DateUtil.java

@ -89,6 +89,11 @@ public class DateUtil {
        return dateTimeFormatter.format(localDateTime);
    }
    public static Date longToDate(long timestamp){
        Instant instant = Instant.ofEpochSecond(timestamp);
        return Date.from(instant);
    }
    /**
     * 时间格式转中文格式
     */