作者 shenhailong

进出港理货 装卸开始结束时间 加8时区 实体+8时区

... ... @@ -530,11 +530,10 @@ public final class DateUtil {
* @return
* @throws ParseException
*/
public Date dateTimeAddfifteen(Date date) throws ParseException {
public static Date dateTimeAddfifteen(Date date) throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Calendar nowTime = Calendar.getInstance();
nowTime.setTime(date);
nowTime.add(Calendar.MINUTE, 15);
Date time = nowTime.getTime();
... ...