Commit f545e709 by shentao

Merge branch 'release' into 'master'

Release

See merge request !556
parents 32713100 60bc2ed8
...@@ -2080,8 +2080,9 @@ public class MarkDataServiceImpl implements MarkDataService { ...@@ -2080,8 +2080,9 @@ public class MarkDataServiceImpl implements MarkDataService {
} }
// 选了ocr+其他 // 选了ocr+其他
if (dto.getType().contains("OCR") && dto.getType().size() != 1){ if (dto.getType().contains("OCR") && dto.getType().size() != 1){
dto.getType().remove("OCR"); List<String> type = new ArrayList<>(dto.getType());
param.put("filterWtype", String.join(",", dto.getType())); type.remove("OCR");
param.put("filterWtype", String.join(",", type));
param.put("ocrType", 3); param.put("ocrType", 3);
} }
param.put("taskName", dto.getName() + "_" + System.currentTimeMillis()); param.put("taskName", dto.getName() + "_" + System.currentTimeMillis());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment