Browse Source

fix--查重丢失

master
parent
commit
d0045b8174
  1. 2
      src/main/java/com/biutag/supervision/pojo/dto/complaintCollection/ComplaintCollectionRepeatDTO.java
  2. 2
      src/main/java/com/biutag/supervision/service/complaintCollection/ComplaintCollectionServiceImpl.java

2
src/main/java/com/biutag/supervision/pojo/dto/complaintCollection/ComplaintCollectionRepeatDTO.java

@ -21,7 +21,7 @@ public class ComplaintCollectionRepeatDTO {
@Schema(description = "来源类型")
private String sourceTable;
@Schema(description = "件编号")
@Schema(description = "件编号")
private String originId;
@Schema(description = "发现时间 / 受理时间")

2
src/main/java/com/biutag/supervision/service/complaintCollection/ComplaintCollectionServiceImpl.java

@ -846,7 +846,7 @@ public class ComplaintCollectionServiceImpl implements ComplaintCollectionServic
.map(item -> {
ComplaintCollectionRepeatDTO dto = new ComplaintCollectionRepeatDTO();
BeanUtil.copyProperties(item, dto);
dto.setSourceTable(CodeTranslateUtil.translateCodesToLabels(item.getSourceTable(), sourceDict));
dto.setSourceTable(CodeTranslateUtil.translateCodesToLabels(item.getSourceTable(), sourceDict) + "(涉)");
return dto;
})
.toList();

Loading…
Cancel
Save