后台新增企业上传视频

上级 d8d07182
流水线 #8594 已通过 于阶段
in 2 分 16 秒
......@@ -53,4 +53,6 @@ public class ApplyTagEditVO implements Serializable {
private String contractNo;
@ApiModelProperty(value = "合同签署状态")
private Integer signStatus;
@ApiModelProperty(value = "企业视频")
private String profileUrl;
}
......@@ -53,13 +53,15 @@ public class CompanyInfoDO implements Serializable {
private Integer leader;
@ApiModelProperty(value = "当前距离")
private Double distance;
@ApiModelProperty(value = "企业视频")
private String profileUrl;
public CompanyInfoDO(ApplyTagEditVO applyTagEditVO) {
this.address = applyTagEditVO.getAddress();
this.lon = applyTagEditVO.getLon();
this.lat = applyTagEditVO.getLat();
this.content = applyTagEditVO.getContent();
this.score = applyTagEditVO.getScore();
this.profileUrl = applyTagEditVO.getProfileUrl();
}
public CompanyInfoVO buildCompanyInfoVO() {
......
......@@ -44,6 +44,8 @@ public class UserApplyTagDO implements Serializable {
@ApiModelProperty(value = "后台账号id" )
private Integer backUserId;
@ApiModelProperty(value = "企业视频")
private String profileUrl;
/**
* 辅助字段end
*/
......@@ -103,6 +105,7 @@ public class UserApplyTagDO implements Serializable {
.contractNo(contractNo)
.remark(this.remark)
.signStatus(signStatus)
.profileUrl(this.profileUrl)
.build();
}
}
......@@ -88,6 +88,9 @@
<if test="backImg != null">
back_img = #{backImg}
</if>
<if test="profileUrl != null">
profile_url = #{profileUrl}
</if>
</set>
where
id = #{id}
......
......@@ -168,6 +168,7 @@
ci.lon,
ci.content,
ci.score,
ci.profile_url,
cti.contract_no,
cti.sign_status
FROM user_apply_tag ua
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论