Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
I
ims-ci-test
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
test-ci
ims-ci-test
Commits
c31a9758
提交
c31a9758
authored
8月 29, 2023
作者:
张小凤
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ServiceOrderFormDetailsDO(update)
上级
f6cf0953
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
25 行增加
和
0 行删除
+25
-0
ServiceOrderFormDTO.java
.../java/com/mmc/csf/infomation/dto/ServiceOrderFormDTO.java
+6
-0
ServiceOrderFormDetailsDTO.java
...om/mmc/csf/infomation/dto/ServiceOrderFormDetailsDTO.java
+4
-0
ServiceOrderFormDO.java
...c/csf/release/entity/requirements/ServiceOrderFormDO.java
+8
-0
ServiceOrderFormDetailsDO.java
...elease/entity/requirements/ServiceOrderFormDetailsDO.java
+6
-0
BackRequirementsDao.xml
...ain/resources/mapper/requirements/BackRequirementsDao.xml
+1
-0
没有找到文件。
csf-common/csf-common-model/src/main/java/com/mmc/csf/infomation/dto/ServiceOrderFormDTO.java
浏览文件 @
c31a9758
...
@@ -54,4 +54,10 @@ public class ServiceOrderFormDTO {
...
@@ -54,4 +54,10 @@ public class ServiceOrderFormDTO {
@ApiModelProperty
(
value
=
"平台总收益"
,
example
=
"100"
)
@ApiModelProperty
(
value
=
"平台总收益"
,
example
=
"100"
)
private
BigDecimal
orderEarnings
;
private
BigDecimal
orderEarnings
;
@ApiModelProperty
(
value
=
"发单时间"
,
example
=
""
)
private
String
createTime
;
@ApiModelProperty
(
value
=
"更新时间"
,
example
=
""
)
private
String
updateTime
;
}
}
csf-common/csf-common-model/src/main/java/com/mmc/csf/infomation/dto/ServiceOrderFormDetailsDTO.java
浏览文件 @
c31a9758
...
@@ -102,4 +102,8 @@ public class ServiceOrderFormDetailsDTO {
...
@@ -102,4 +102,8 @@ public class ServiceOrderFormDetailsDTO {
@ApiModelProperty
(
value
=
"需求描述"
)
@ApiModelProperty
(
value
=
"需求描述"
)
private
String
requireDescription
;
private
String
requireDescription
;
@ApiModelProperty
(
value
=
"更新时间"
,
example
=
""
)
private
String
updateTime
;
}
}
release-service/src/main/java/com/mmc/csf/release/entity/requirements/ServiceOrderFormDO.java
浏览文件 @
c31a9758
...
@@ -57,6 +57,12 @@ public class ServiceOrderFormDO {
...
@@ -57,6 +57,12 @@ public class ServiceOrderFormDO {
@ApiModelProperty
(
value
=
"平台总收益"
,
example
=
"100"
)
@ApiModelProperty
(
value
=
"平台总收益"
,
example
=
"100"
)
private
BigDecimal
orderEarnings
;
private
BigDecimal
orderEarnings
;
@ApiModelProperty
(
value
=
"发单时间"
,
example
=
""
)
private
String
createTime
;
@ApiModelProperty
(
value
=
"更新时间"
,
example
=
""
)
private
String
updateTime
;
public
ServiceOrderFormDTO
buildServiceOrderForm
()
{
public
ServiceOrderFormDTO
buildServiceOrderForm
()
{
return
ServiceOrderFormDTO
.
builder
()
return
ServiceOrderFormDTO
.
builder
()
.
id
(
this
.
id
)
.
id
(
this
.
id
)
...
@@ -69,6 +75,8 @@ public class ServiceOrderFormDO {
...
@@ -69,6 +75,8 @@ public class ServiceOrderFormDO {
.
doing
(
this
.
doing
)
.
doing
(
this
.
doing
)
.
orderEarnings
(
this
.
orderEarnings
)
.
orderEarnings
(
this
.
orderEarnings
)
.
orderAttribute
(
this
.
orderAttribute
)
.
orderAttribute
(
this
.
orderAttribute
)
.
createTime
(
this
.
createTime
)
.
updateTime
(
this
.
updateTime
)
.
build
();
.
build
();
}
}
...
...
release-service/src/main/java/com/mmc/csf/release/entity/requirements/ServiceOrderFormDetailsDO.java
浏览文件 @
c31a9758
...
@@ -93,6 +93,10 @@ public class ServiceOrderFormDetailsDO {
...
@@ -93,6 +93,10 @@ public class ServiceOrderFormDetailsDO {
private
String
requireDescription
;
private
String
requireDescription
;
@ApiModelProperty
(
value
=
"更新时间"
,
example
=
""
)
private
String
updateTime
;
public
ServiceOrderFormDetailsDTO
buildOrderFormDetails
()
{
public
ServiceOrderFormDetailsDTO
buildOrderFormDetails
()
{
return
ServiceOrderFormDetailsDTO
.
builder
()
return
ServiceOrderFormDetailsDTO
.
builder
()
.
id
(
this
.
id
)
.
id
(
this
.
id
)
...
@@ -115,6 +119,8 @@ public class ServiceOrderFormDetailsDO {
...
@@ -115,6 +119,8 @@ public class ServiceOrderFormDetailsDO {
.
updateOrderAmount
(
this
.
updateOrderAmount
)
.
updateOrderAmount
(
this
.
updateOrderAmount
)
.
requireDescription
(
this
.
requireDescription
)
.
requireDescription
(
this
.
requireDescription
)
.
orderEarningsDTO
(
this
.
orderEarningsDTO
)
.
orderEarningsDTO
(
this
.
orderEarningsDTO
)
.
createTime
(
this
.
createTime
)
.
updateTime
(
this
.
updateTime
)
.
build
();
.
build
();
}
}
}
}
release-service/src/main/resources/mapper/requirements/BackRequirementsDao.xml
浏览文件 @
c31a9758
...
@@ -63,6 +63,7 @@
...
@@ -63,6 +63,7 @@
<select
id=
"serviceOrderFormDetails"
resultType=
"com.mmc.csf.release.entity.requirements.ServiceOrderFormDetailsDO"
>
<select
id=
"serviceOrderFormDetails"
resultType=
"com.mmc.csf.release.entity.requirements.ServiceOrderFormDetailsDO"
>
SELECT ri.id,
SELECT ri.id,
ri.create_time,
ri.create_time,
ri.update_time,
ri.service_id,
ri.service_id,
ri.service_name,
ri.service_name,
ri.publisher_number,
ri.publisher_number,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论