fix: 修复同步时间判断错误

master
wyb 11 months ago
parent b12083d2a1
commit 57e8cb913e

@ -50,7 +50,7 @@ public class GzZxyJhQcPatientInfoSyncServiceImpl implements PatientInfoSyncServi
String endDateStr = end.toString();
String startDateStr = start.toString();
int everyDayRetries = 20;
while (endDate.isBefore(startDate)) {
while (!endDate.isBefore(startDate)) {
// 同步与重试
String dateStr = startDate.toString();
try {

Loading…
Cancel
Save