调整同步条数

dev
lisai 2022-03-03 17:16:35 +08:00
parent 9cedc28427
commit 055a2c50e0
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ public class SyncTaskService {
}
public List<SyncTask> unsynclist(int supermarket_id) {
return SyncTask.dao.find("select * from sync_task t where t.state = 0 and t.supermarket_id = ? order by t.create_time limit 0, 500", supermarket_id);
return SyncTask.dao.find("select * from sync_task t where t.state = 0 and t.supermarket_id = ? order by t.create_time limit 0, 1000", supermarket_id);
}
/**