DateFormatterConstants.java
430 Bytes
package com.tianting.infoloop.constants;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
public interface DateFormatterConstants {
ZoneId CHINA_ZONE = ZoneId.of("Asia/Shanghai");
DateTimeFormatter DATE_TIME_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").withZone(CHINA_ZONE);
DateTimeFormatter DATE_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd").withZone(CHINA_ZONE);
}