|
|
|
@ -69,6 +69,7 @@ import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import com.biutag.supervision.pojo.enums.complaintCollection.*; |
|
|
|
import com.biutag.supervision.pojo.enums.complaintCollection.*; |
|
|
|
|
|
|
|
import com.biutag.supervision.pojo.enums.negative.NegativeSourceTypeEnum; |
|
|
|
|
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
import java.io.IOException; |
|
|
|
import java.io.UnsupportedEncodingException; |
|
|
|
import java.io.UnsupportedEncodingException; |
|
|
|
@ -1019,6 +1020,10 @@ public class ComplaintCollectionServiceImpl implements ComplaintCollectionServic |
|
|
|
// 附件
|
|
|
|
// 附件
|
|
|
|
dto.setThingFiles(request.getThingFiles()); |
|
|
|
dto.setThingFiles(request.getThingFiles()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 来源设置
|
|
|
|
|
|
|
|
dto.setSourceType(NegativeSourceTypeEnum.COMPLAINT_REPORT.getCode()); |
|
|
|
|
|
|
|
dto.setSourceTypeDesc(NegativeSourceTypeEnum.COMPLAINT_REPORT.getDesc()); |
|
|
|
|
|
|
|
|
|
|
|
return dto; |
|
|
|
return dto; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|