后台新增企业上传视频

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