Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cms-ci-test
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
test-ci
cms-ci-test
Commits
613b0421
提交
613b0421
authored
8月 05, 2023
作者:
张小凤
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
PilotCertificationDO(update)
上级
6eb36639
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
13 行增加
和
4 行删除
+13
-4
PilotCertificationDTO.java
...iuav/user/model/dto/dronepilot/PilotCertificationDTO.java
+2
-1
PilotCertificationDO.java
...mmc/iuav/user/entity/dronepilot/PilotCertificationDO.java
+4
-0
PilotCertificationDao.xml
...ain/resources/mapper/dronepilot/PilotCertificationDao.xml
+7
-3
没有找到文件。
cms-common/cms-common-model/src/main/java/com/mmc/iuav/user/model/dto/dronepilot/PilotCertificationDTO.java
浏览文件 @
613b0421
...
@@ -102,5 +102,6 @@ public class PilotCertificationDTO {
...
@@ -102,5 +102,6 @@ public class PilotCertificationDTO {
private
Integer
reasonId
;
private
Integer
reasonId
;
@ApiModelProperty
(
value
=
"审批不通过的原因"
,
example
=
"1"
)
@ApiModelProperty
(
value
=
"审批不通过的原因"
,
example
=
"1"
)
private
String
reason
;
private
String
reason
;
@ApiModelProperty
(
value
=
"飞手头像"
,
example
=
"http://"
)
private
String
userImg
;
}
}
csm-service/cms-service-user/src/main/java/com/mmc/iuav/user/entity/dronepilot/PilotCertificationDO.java
浏览文件 @
613b0421
...
@@ -110,6 +110,9 @@ public class PilotCertificationDO {
...
@@ -110,6 +110,9 @@ public class PilotCertificationDO {
*/
*/
private
String
phoneNum
;
private
String
phoneNum
;
@ApiModelProperty
(
value
=
"飞手头像"
,
example
=
"http://"
)
private
String
userImg
;
public
PilotCertificationDO
(
PilotCertificationVO
pilotCertificationVO
,
Integer
userAccountId
)
{
public
PilotCertificationDO
(
PilotCertificationVO
pilotCertificationVO
,
Integer
userAccountId
)
{
this
.
id
=
pilotCertificationVO
.
getId
();
this
.
id
=
pilotCertificationVO
.
getId
();
...
@@ -152,6 +155,7 @@ public class PilotCertificationDO {
...
@@ -152,6 +155,7 @@ public class PilotCertificationDO {
.
phoneNum
(
this
.
getPhoneNum
())
.
phoneNum
(
this
.
getPhoneNum
())
.
reasonId
(
this
.
reasonId
)
.
reasonId
(
this
.
reasonId
)
.
reason
(
this
.
reason
)
.
reason
(
this
.
reason
)
.
userImg
(
this
.
userImg
)
.
build
();
.
build
();
}
}
...
...
csm-service/cms-service-user/src/main/resources/mapper/dronepilot/PilotCertificationDao.xml
浏览文件 @
613b0421
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
<result
property=
"phoneNum"
column=
"phone_num"
/>
<result
property=
"phoneNum"
column=
"phone_num"
/>
<result
property=
"reasonId"
column=
"reason_id"
/>
<result
property=
"reasonId"
column=
"reason_id"
/>
<result
property=
"reason"
column=
"reason"
/>
<result
property=
"reason"
column=
"reason"
/>
<result
property=
"userImg"
column=
"user_img"
/>
<collection
property=
"pilotAbility"
ofType=
"com.mmc.iuav.user.model.vo.dronepilot.PilotAbilityVO"
<collection
property=
"pilotAbility"
ofType=
"com.mmc.iuav.user.model.vo.dronepilot.PilotAbilityVO"
select=
"selectAbilityList"
select=
"selectAbilityList"
column=
"{pilotCertificationId=id}"
>
column=
"{pilotCertificationId=id}"
>
...
@@ -157,7 +158,8 @@
...
@@ -157,7 +158,8 @@
rna.sex,
rna.sex,
ua.phone_num,
ua.phone_num,
pc.reason_id,
pc.reason_id,
pr.reason
pr.reason,
ua.user_img
FROM
FROM
pilot_certification pc
pilot_certification pc
LEFT JOIN real_name_auth rna ON pc.user_account_id = rna.user_account_id
LEFT JOIN real_name_auth rna ON pc.user_account_id = rna.user_account_id
...
@@ -209,7 +211,8 @@
...
@@ -209,7 +211,8 @@
rna.sex,
rna.sex,
ua.phone_num,
ua.phone_num,
pc.reason_id,
pc.reason_id,
pr.reason
pr.reason,
ua.user_img
FROM pilot_certification pc
FROM pilot_certification pc
LEFT JOIN real_name_auth rna ON pc.user_account_id = rna.user_account_id
LEFT JOIN real_name_auth rna ON pc.user_account_id = rna.user_account_id
LEFT JOIN user_account ua ON pc.user_account_id = ua.id
LEFT JOIN user_account ua ON pc.user_account_id = ua.id
...
@@ -238,7 +241,8 @@
...
@@ -238,7 +241,8 @@
rna.sex,
rna.sex,
ua.phone_num,
ua.phone_num,
pc.reason_id,
pc.reason_id,
pr.reason
pr.reason,
ua.user_img
FROM pilot_certification pc
FROM pilot_certification pc
LEFT JOIN real_name_auth rna ON pc.user_account_id = rna.user_account_id
LEFT JOIN real_name_auth rna ON pc.user_account_id = rna.user_account_id
LEFT JOIN user_account ua ON pc.user_account_id = ua.id
LEFT JOIN user_account ua ON pc.user_account_id = ua.id
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论