添加新版收银系统支付

This commit is contained in:
韩鹏辉
2024-05-17 10:51:30 +08:00
parent 09e9b172ee
commit e64bce5e93
5 changed files with 238 additions and 198 deletions

View File

@@ -19,6 +19,8 @@ public class DateUtils {
private final static SimpleDateFormat sdfTimes = new SimpleDateFormat("yyyyMMddHHmmss");
private final static SimpleDateFormat sdfTimesSs = new SimpleDateFormat("yyyyMMddHHmmss");
private final static SimpleDateFormat sdfday = new SimpleDateFormat("MM-dd HH:mm");
@@ -61,6 +63,10 @@ public class DateUtils {
}
public static String getSsdfTimes() {
return sdfTimesSs.format(new Date());
}
public static String getNextSdfTimes(Date date){
return sdfTimes.format(date);
}