Commit d45967ad authored by xixinzhao's avatar xixinzhao

fix(jg):不需要特殊处理图片

parent a7a76094
...@@ -164,10 +164,10 @@ public class JgInstallationNoticeDto extends BaseDto { ...@@ -164,10 +164,10 @@ public class JgInstallationNoticeDto extends BaseDto {
private String inputUnitNo; private String inputUnitNo;
@ApiModelProperty(value = "安装委托书图片") @ApiModelProperty(value = "安装委托书图片")
private List<Map<String, String>> proxyStatementAttachmentList; private String proxyStatementAttachmentList;
@ApiModelProperty(value = "安装合同照片") @ApiModelProperty(value = "安装合同照片")
private List<Map<String, String>> installContractAttachmentList; private String installContractAttachmentList;
@ApiModelProperty(value = "安装委托书图片") @ApiModelProperty(value = "安装委托书图片")
private String proxyStatementAttachment; private String proxyStatementAttachment;
......
...@@ -282,10 +282,8 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN ...@@ -282,10 +282,8 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
private void convertField(JgInstallationNoticeDto model) { private void convertField(JgInstallationNoticeDto model) {
// 处理图片 // 处理图片
String proxyStatementAttachment = convertImageUrl(model.getInstallContractAttachmentList()); model.setProxyStatementAttachment(model.getProxyStatementAttachmentList());
String installContractAttachment = convertImageUrl(model.getProxyStatementAttachmentList()); model.setInstallContractAttachment(model.getInstallContractAttachmentList());
model.setProxyStatementAttachment(proxyStatementAttachment);
model.setInstallContractAttachment(installContractAttachment);
// 分割省市区字段 // 分割省市区字段
String province = model.getProvince(); String province = model.getProvince();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment