Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
I
ims
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
ims
Commits
158f6b74
提交
158f6b74
authored
8月 29, 2023
作者:
张小凤
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
RequirementsInfoDO(update)
上级
d567774f
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
18 行增加
和
1 行删除
+18
-1
RequirementsInfoVO.java
...in/java/com/mmc/csf/infomation/vo/RequirementsInfoVO.java
+7
-0
RequirementsInfoDO.java
...c/csf/release/entity/requirements/RequirementsInfoDO.java
+8
-0
RequirementsDao.xml
...rc/main/resources/mapper/requirements/RequirementsDao.xml
+3
-1
没有找到文件。
csf-common/csf-common-model/src/main/java/com/mmc/csf/infomation/vo/RequirementsInfoVO.java
浏览文件 @
158f6b74
...
@@ -165,4 +165,11 @@ public class RequirementsInfoVO implements Serializable {
...
@@ -165,4 +165,11 @@ public class RequirementsInfoVO implements Serializable {
@ApiModelProperty
(
value
=
"原因url"
)
@ApiModelProperty
(
value
=
"原因url"
)
private
String
url
;
private
String
url
;
@ApiModelProperty
(
value
=
"修改后原因"
)
private
String
afterModificationReason
;
@ApiModelProperty
(
value
=
"修改后url"
)
private
String
afterModificationUrl
;
}
}
release-service/src/main/java/com/mmc/csf/release/entity/requirements/RequirementsInfoDO.java
浏览文件 @
158f6b74
...
@@ -158,6 +158,12 @@ public class RequirementsInfoDO implements Serializable {
...
@@ -158,6 +158,12 @@ public class RequirementsInfoDO implements Serializable {
@IsNullConvertZero
@IsNullConvertZero
private
BigDecimal
levelSalaryAmount
;
private
BigDecimal
levelSalaryAmount
;
@ApiModelProperty
(
value
=
"修改后原因"
)
private
String
afterModificationReason
;
@ApiModelProperty
(
value
=
"修改后url"
)
private
String
afterModificationUrl
;
public
RequirementsInfoVO
buildRequirementsInfoVO
()
{
public
RequirementsInfoVO
buildRequirementsInfoVO
()
{
return
RequirementsInfoVO
.
builder
().
id
(
this
.
id
).
requirementTypeId
(
this
.
requirementTypeId
).
userAccountId
(
this
.
userAccountId
).
publishName
(
this
.
publishName
)
return
RequirementsInfoVO
.
builder
().
id
(
this
.
id
).
requirementTypeId
(
this
.
requirementTypeId
).
userAccountId
(
this
.
userAccountId
).
publishName
(
this
.
publishName
)
.
publishPhone
(
this
.
publishPhone
).
requireDescription
(
this
.
requireDescription
).
solved
(
this
.
solved
).
taskStartTime
(
this
.
taskStartTime
).
taskEndTime
(
this
.
taskEndTime
)
.
publishPhone
(
this
.
publishPhone
).
requireDescription
(
this
.
requireDescription
).
solved
(
this
.
solved
).
taskStartTime
(
this
.
taskStartTime
).
taskEndTime
(
this
.
taskEndTime
)
...
@@ -184,6 +190,8 @@ public class RequirementsInfoDO implements Serializable {
...
@@ -184,6 +190,8 @@ public class RequirementsInfoDO implements Serializable {
.
updateOrderAmount
(
this
.
updateOrderAmount
)
.
updateOrderAmount
(
this
.
updateOrderAmount
)
.
reason
(
this
.
reason
)
.
reason
(
this
.
reason
)
.
url
(
this
.
url
)
.
url
(
this
.
url
)
.
afterModificationReason
(
this
.
afterModificationReason
)
.
afterModificationUrl
(
this
.
afterModificationUrl
)
.
build
();
.
build
();
}
}
...
...
release-service/src/main/resources/mapper/requirements/RequirementsDao.xml
浏览文件 @
158f6b74
...
@@ -397,7 +397,9 @@
...
@@ -397,7 +397,9 @@
rau.update_order_amount,
rau.update_order_amount,
ra.reason,
ra.reason,
ra.url,
ra.url,
ra.order_level
ra.order_level,
rau.reason AS afterModificationReason,
rau.url AS afterModificationUrl
FROM requirements_info ri
FROM requirements_info ri
LEFT JOIN requirements_type rt ON rt.id = ri.requirement_type_id
LEFT JOIN requirements_type rt ON rt.id = ri.requirement_type_id
LEFT JOIN requirements_amount_update rau ON rau.requirements_info_id = ri.id
LEFT JOIN requirements_amount_update rau ON rau.requirements_info_id = ri.id
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论