发版合并 #363

Merged
wangqiong123 merged 129 commits from dev into pro 2024-06-03 02:26:01 +00:00
Showing only changes of commit 7cd6c52db5 - Show all commits
@@ -2550,7 +2550,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
public int submitCaseApplicationBatch(String batchNumber) {
int rows = 0;
CaseApplication caseApplicationsel = new CaseApplication();
caseApplicationsel.setBatchNumber(batchNumber);
caseApplicationsel.setBatchNumber(Integer.parseInt(batchNumber));
caseApplicationsel.setCaseStatus(CaseApplicationConstants.CASE_APPLICATION);
List<CaseApplication> caseApplications = caseApplicationMapper.listCaseApplicationByBatchNumber(caseApplicationsel);
List<Long> ids = caseApplications.stream().map(CaseApplication::getId).collect(Collectors.toList());