作者 shenhailong

添加 装货卸货时间计算 装货时间+15分钟 等于 卸货时间

... ... @@ -523,4 +523,22 @@ public final class DateUtil {
return format.format(date);
}
/**
* 传入时间+15分钟
* @param date
* @return
* @throws ParseException
*/
public 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();
return time;
}
}
... ...