|
@@ -18,6 +18,7 @@ public class CheckSupplyChainJob {
|
|
|
|
|
|
@XxlJob("todayCheckSupplyChainJob")
|
|
|
public void todayCheckSupplyChainJob() throws Exception {
|
|
|
+
|
|
|
String today = DateUtils.date2Str();
|
|
|
Map<String, Object> paramMap = new HashMap<String, Object>();
|
|
|
paramMap.put("endDate", today);
|
|
@@ -28,6 +29,7 @@ public class CheckSupplyChainJob {
|
|
|
|
|
|
@XxlJob("twoDaysCheckSupplyChainJob")
|
|
|
public void twoDaysCheckSupplyChainJob() throws Exception {
|
|
|
+
|
|
|
String today = DateUtils.date2Str();
|
|
|
//昨天
|
|
|
String endDate = DateUtils.getLastDay(today, 1);
|