征求意见-查询出来的数据跟数据的查询条件不符合(已解决)

This commit is contained in:
cuijiaming
2022-12-01 11:47:37 +08:00
parent 546a839d12
commit 6175ea6b9f
5 changed files with 77 additions and 47 deletions
@@ -156,7 +156,7 @@ public class DateUtil {
String endDate = sdf.format(today);//当前日期
Calendar theCa = Calendar.getInstance();
theCa.setTime(today);
theCa.add(theCa.DATE, +1);
theCa.add(theCa.DATE, 1);
Date start = theCa.getTime();
startDate = sdf.format(start);
} catch (ParseException e) {