@@ -1111,6 +1111,9 @@ public class TauvInspectFileServiceImpl extends BaseServiceImpl<TauvInspectFileM | |||
String path = inspectFile.getThumbImg().replace("_1", "_2"); | |||
inspectFileDataVo.setFilePath(uploadUrl + path); | |||
} | |||
if (inspectFile.getOriginalImg() != null && inspectFile.getOriginalImg() != "") { | |||
inspectFileDataVo.setOriginImg(uploadUrl + inspectFile.getOriginalImg()); | |||
} | |||
TauvInspectDriver inspectDriver = inspectDriverMapper.selectById(inspectFile.getInspectDriverId()); | |||
if (inspectDriver != null) { |
@@ -1,5 +1,6 @@ | |||
package com.taauav.front.vo; | |||
import com.fasterxml.jackson.annotation.JsonFormat; | |||
import lombok.Data; | |||
import java.util.Date; | |||
@@ -22,6 +23,7 @@ public class LSInspectFileDataVo { | |||
private String driverAreaName; | |||
@JsonFormat(pattern = "yyyy-MM-dd") | |||
private Date executionTime; | |||
private String categoryText; | |||
@@ -32,5 +34,5 @@ public class LSInspectFileDataVo { | |||
private String filePath; | |||
private String originImg; | |||
} |