@@ -51,6 +51,7 @@ public class ObsService {
Map map = new HashMap();
map.put("url", accessEndPoint + "/" + objectKey + fileName);
map.put("objectKey", objectKey + fileName);
+ map.put("fileName", file.getOriginalFilename());
return map;
}
@@ -35,6 +35,8 @@ public class ZEngiineeringPhoto extends BaseEntity {
* 图片地址
*/
private String picUrl;
+
+ private String fileName;
/**
* 备注
@@ -33,6 +33,8 @@ public class ZEngiineeringPhotoBo extends BaseEntity {
@NotBlank(message = "上级id不能为空", groups = { AddGroup.class, EditGroup.class })
private String parentId;
@@ -40,6 +40,8 @@ public class ZEngiineeringPhotoVo extends BaseEntity implements Serializable {
@ExcelProperty(value = "图片地址")
+ @ExcelProperty(value = "文件名称")