Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cms
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
cms
Commits
e86c3576
提交
e86c3576
authored
3月 26, 2024
作者:
刘明祎-运维用途
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
后台新增企业上传视频
上级
d8d07182
流水线
#8594
已通过 于阶段
in 2 分 16 秒
变更
5
流水线
1
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
12 行增加
和
1 行删除
+12
-1
ApplyTagEditVO.java
.../main/java/com/mmc/iuav/user/model/vo/ApplyTagEditVO.java
+2
-0
CompanyInfoDO.java
...src/main/java/com/mmc/iuav/user/entity/CompanyInfoDO.java
+3
-1
UserApplyTagDO.java
...rc/main/java/com/mmc/iuav/user/entity/UserApplyTagDO.java
+3
-0
CompanyDao.xml
...cms-service-user/src/main/resources/mapper/CompanyDao.xml
+3
-0
CooperationDao.xml
...service-user/src/main/resources/mapper/CooperationDao.xml
+1
-0
没有找到文件。
cms-common/cms-common-model/src/main/java/com/mmc/iuav/user/model/vo/ApplyTagEditVO.java
浏览文件 @
e86c3576
...
...
@@ -53,4 +53,6 @@ public class ApplyTagEditVO implements Serializable {
private
String
contractNo
;
@ApiModelProperty
(
value
=
"合同签署状态"
)
private
Integer
signStatus
;
@ApiModelProperty
(
value
=
"企业视频"
)
private
String
profileUrl
;
}
csm-service/cms-service-user/src/main/java/com/mmc/iuav/user/entity/CompanyInfoDO.java
浏览文件 @
e86c3576
...
...
@@ -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
()
{
...
...
csm-service/cms-service-user/src/main/java/com/mmc/iuav/user/entity/UserApplyTagDO.java
浏览文件 @
e86c3576
...
...
@@ -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
();
}
}
csm-service/cms-service-user/src/main/resources/mapper/CompanyDao.xml
浏览文件 @
e86c3576
...
...
@@ -88,6 +88,9 @@
<if
test=
"backImg != null"
>
back_img = #{backImg}
</if>
<if
test=
"profileUrl != null"
>
profile_url = #{profileUrl}
</if>
</set>
where
id = #{id}
...
...
csm-service/cms-service-user/src/main/resources/mapper/CooperationDao.xml
浏览文件 @
e86c3576
...
...
@@ -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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论