将变更单筛选时间扩展到了十天

This commit is contained in:
itzhang 2025-07-21 14:37:52 +08:00
parent 44d443aebc
commit 61a3326344
4 changed files with 4 additions and 4 deletions

View File

@ -419,7 +419,7 @@ public class DesignController {
CrmRequestUtil crmRequestUtil = new CrmRequestUtil(); CrmRequestUtil crmRequestUtil = new CrmRequestUtil();
long twoDaysAgo = LocalDateTime.now() long twoDaysAgo = LocalDateTime.now()
.minusDays(3) .minusDays(10)
.atZone(ZoneId.systemDefault()) .atZone(ZoneId.systemDefault())
.toInstant() .toInstant()
.toEpochMilli(); .toEpochMilli();

View File

@ -433,7 +433,7 @@ public class FrameContractController {
CrmRequestUtil crmRequestUtil = new CrmRequestUtil(); CrmRequestUtil crmRequestUtil = new CrmRequestUtil();
long twoDaysAgo = LocalDateTime.now() long twoDaysAgo = LocalDateTime.now()
.minusDays(1) .minusDays(10)
.atZone(ZoneId.systemDefault()) .atZone(ZoneId.systemDefault())
.toInstant() .toInstant()
.toEpochMilli(); .toEpochMilli();

View File

@ -365,7 +365,7 @@ public class PreContractController {
CrmRequestUtil crmRequestUtil = new CrmRequestUtil(); CrmRequestUtil crmRequestUtil = new CrmRequestUtil();
long twoDaysAgo = LocalDateTime.now() long twoDaysAgo = LocalDateTime.now()
.minusDays(1) .minusDays(10)
.atZone(ZoneId.systemDefault()) .atZone(ZoneId.systemDefault())
.toInstant() .toInstant()
.toEpochMilli(); .toEpochMilli();

View File

@ -613,7 +613,7 @@ public class XSHTController {
CrmRequestUtil crmRequestUtil = new CrmRequestUtil(); CrmRequestUtil crmRequestUtil = new CrmRequestUtil();
long twoDaysAgo = LocalDateTime.now() long twoDaysAgo = LocalDateTime.now()
.minusDays(1) .minusDays(10)
.atZone(ZoneId.systemDefault()) .atZone(ZoneId.systemDefault())
.toInstant() .toInstant()
.toEpochMilli(); .toEpochMilli();