提交 fe866862 作者: 刘明祎-运维用途

修改请求方式

上级 5bcd3ffe
...@@ -30,6 +30,9 @@ public class UserApplyTagDetailsVO { ...@@ -30,6 +30,9 @@ public class UserApplyTagDetailsVO {
@ApiModelProperty(value = "附件") @ApiModelProperty(value = "附件")
private List<AttachmentVO> attachmentList; private List<AttachmentVO> attachmentList;
@ApiModelProperty(value = "合同订单编号")
private String orderNo;
@ApiModelProperty(value = "备注") @ApiModelProperty(value = "备注")
private String remark; private String remark;
} }
...@@ -187,6 +187,7 @@ public class CooperationServiceImpl implements CooperationService { ...@@ -187,6 +187,7 @@ public class CooperationServiceImpl implements CooperationService {
userApplyTagDetailsVO.setLicenseImg(companyInfoDO.getLicenseImg()); userApplyTagDetailsVO.setLicenseImg(companyInfoDO.getLicenseImg());
userApplyTagDetailsVO.setCreditCode(companyInfoDO.getCreditCode()); userApplyTagDetailsVO.setCreditCode(companyInfoDO.getCreditCode());
userApplyTagDetailsVO.setRemark(userApplyTag.getRemark()); userApplyTagDetailsVO.setRemark(userApplyTag.getRemark());
userApplyTagDetailsVO.setOrderNo(userApplyTag.getOrderNo());
return ResultBody.success(userApplyTagDetailsVO); return ResultBody.success(userApplyTagDetailsVO);
} }
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
<result property="remark" column="remark"/> <result property="remark" column="remark"/>
<result property="createTime" column="create_time"/> <result property="createTime" column="create_time"/>
<result property="tagName" column="tag_name"/> <result property="tagName" column="tag_name"/>
<result property="orderNo" column="order_no"/>
<association property="companyInfoDO" javaType="com.mmc.iuav.user.entity.CompanyInfoDO"> <association property="companyInfoDO" javaType="com.mmc.iuav.user.entity.CompanyInfoDO">
<id property="id" column="company_info_id"/> <id property="id" column="company_info_id"/>
...@@ -151,6 +152,7 @@ ...@@ -151,6 +152,7 @@
ua.apply_status, ua.apply_status,
ua.remark, ua.remark,
ua.create_time, ua.create_time,
ua.order_no,
ct.tag_name, ct.tag_name,
ci.id AS company_info_id, ci.id AS company_info_id,
ci.company_name, ci.company_name,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论