1. 同步最新的表结构

2. 记录执行日志
This commit is contained in:
YunaiV
2021-02-17 21:00:58 +08:00
parent 5fc03bd8aa
commit 74f2c8a879
11 changed files with 271 additions and 83 deletions

View File

@ -18,7 +18,7 @@ public class DateUtils {
return System.currentTimeMillis() > time.getTime();
}
public static Long diff(Date endTime, Date startTime) {
public static long diff(Date endTime, Date startTime) {
return endTime.getTime() - startTime.getTime();
}