提交 ef356daa authored 作者: liuhaiquan's avatar liuhaiquan

客户列表和新增增加图片字段

上级 4d1bda99
......@@ -32,5 +32,7 @@ public class SaveCustomerComplaintDetailParam {
@ApiModelProperty("运单编号")
private String content; //问题描述
@ApiModelProperty("图片")
private String picture; //图片
}
......@@ -4,8 +4,6 @@ import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
import java.time.LocalDateTime;
/**
* @ClassName CustomerComplaintTypeVO
* @Description
......@@ -30,7 +28,9 @@ public class CustomerComplaintDetailVO {
private Integer complaintTypeId; //投诉类型id
@ApiModelProperty("问题描述")
private String content; //问题描述
@ApiModelProperty("图片")
private String picture; //图片
@ApiModelProperty("创建时间")
private LocalDateTime createTime; //创建时间
private String createTime; //创建时间
}
......@@ -32,6 +32,7 @@ public class CustomerComplaintDetail implements HasKey<Integer> {
private String childNo; //运单编号
private Integer complaintTypeId; //投诉类型id
private String content; //问题描述
private String picture; //图片
private LocalDateTime createTime; //创建时间
private LocalDateTime modifiedTime; //修改时间
......
......@@ -35,6 +35,7 @@ public class CustomerComplaintDetailServiceImpl implements CustomerComplaintDeta
detail.setChildNo(param.getChildNo());
detail.setComplaintTypeId(param.getComplaintTypeId());
detail.setContent(param.getContent());
detail.setPicture(param.getPicture());
customerComplaintDetailDao.saveEntity(detail);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论