投诉举报敏感数据加密解密测试

This commit is contained in:
heli02 2025-10-17 17:46:19 +08:00
parent 751246186f
commit c669e2ec1f
1 changed files with 1 additions and 2 deletions

View File

@ -58,14 +58,13 @@ public class ReportCheckScheduleService {
@Scheduled(fixedDelay = 120000)
@Transactional
public void scheduledTask() {
log.info("开始导入举报核查信息...");
DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String create_time = null;
LocalDateTime maxAcceptTime = reportCheckRepo.getMaxAcceptTime();
if (null != maxAcceptTime) {
create_time = "[\"" + maxAcceptTime.format(df) + "\",\"" + LocalDateTime.now().format(df) + "\"]";
}
extracted(create_time);
}