设计文件变更,时间条件筛选改成了三天以内,防止审批时间过长导致条件不符

This commit is contained in:
itzhang 2025-07-16 09:18:28 +08:00
parent b895e0b590
commit deea416686

View File

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