wuwenxiong 2022-03-09 10:21:50 +08:00
commit 715047dad5
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);
}
/**