Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
I
ims
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
ims
Commits
9515199b
提交
9515199b
authored
8月 31, 2023
作者:
张小凤
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
RequirementsDao.xml(update)
上级
62e03197
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
18 行增加
和
4 行删除
+18
-4
ServiceEvaluateVO.java
...ain/java/com/mmc/csf/infomation/vo/ServiceEvaluateVO.java
+2
-0
ServiceFulfilATaskVO.java
.../java/com/mmc/csf/infomation/vo/ServiceFulfilATaskVO.java
+2
-0
ServiceSettleAccountsVO.java
...va/com/mmc/csf/infomation/vo/ServiceSettleAccountsVO.java
+2
-0
ServiceOrderFormDetailsDO.java
...elease/entity/requirements/ServiceOrderFormDetailsDO.java
+4
-0
BackRequirementsDao.xml
...ain/resources/mapper/requirements/BackRequirementsDao.xml
+5
-2
RequirementsDao.xml
...rc/main/resources/mapper/requirements/RequirementsDao.xml
+3
-2
没有找到文件。
csf-common/csf-common-model/src/main/java/com/mmc/csf/infomation/vo/ServiceEvaluateVO.java
浏览文件 @
9515199b
...
@@ -5,6 +5,7 @@ import lombok.AllArgsConstructor;
...
@@ -5,6 +5,7 @@ import lombok.AllArgsConstructor;
import
lombok.Builder
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
lombok.NoArgsConstructor
;
import
org.hibernate.validator.constraints.Length
;
/**
/**
* @Author small
* @Author small
...
@@ -23,6 +24,7 @@ public class ServiceEvaluateVO {
...
@@ -23,6 +24,7 @@ public class ServiceEvaluateVO {
private
Integer
userAccountId
;
private
Integer
userAccountId
;
@ApiModelProperty
(
value
=
"评价内容"
,
example
=
"1"
)
@ApiModelProperty
(
value
=
"评价内容"
,
example
=
"1"
)
@Length
(
max
=
300
,
message
=
"字符过长"
)
private
String
evaluationContent
;
private
String
evaluationContent
;
@ApiModelProperty
(
value
=
"星级"
,
example
=
"星"
)
@ApiModelProperty
(
value
=
"星级"
,
example
=
"星"
)
...
...
csf-common/csf-common-model/src/main/java/com/mmc/csf/infomation/vo/ServiceFulfilATaskVO.java
浏览文件 @
9515199b
...
@@ -5,6 +5,7 @@ import lombok.AllArgsConstructor;
...
@@ -5,6 +5,7 @@ import lombok.AllArgsConstructor;
import
lombok.Builder
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
lombok.NoArgsConstructor
;
import
org.hibernate.validator.constraints.Length
;
/**
/**
* @Author small
* @Author small
...
@@ -20,6 +21,7 @@ public class ServiceFulfilATaskVO {
...
@@ -20,6 +21,7 @@ public class ServiceFulfilATaskVO {
private
Integer
id
;
private
Integer
id
;
@ApiModelProperty
(
value
=
"完成任务描述"
,
example
=
"完成任务描述一下"
)
@ApiModelProperty
(
value
=
"完成任务描述"
,
example
=
"完成任务描述一下"
)
@Length
(
max
=
300
,
message
=
"字符过长"
)
private
String
taskDescribe
;
private
String
taskDescribe
;
@ApiModelProperty
(
value
=
"完成任务图片"
,
example
=
"http://"
)
@ApiModelProperty
(
value
=
"完成任务图片"
,
example
=
"http://"
)
...
...
csf-common/csf-common-model/src/main/java/com/mmc/csf/infomation/vo/ServiceSettleAccountsVO.java
浏览文件 @
9515199b
...
@@ -5,6 +5,7 @@ import lombok.AllArgsConstructor;
...
@@ -5,6 +5,7 @@ import lombok.AllArgsConstructor;
import
lombok.Builder
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
lombok.NoArgsConstructor
;
import
org.hibernate.validator.constraints.Length
;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
...
@@ -26,6 +27,7 @@ public class ServiceSettleAccountsVO implements Serializable {
...
@@ -26,6 +27,7 @@ public class ServiceSettleAccountsVO implements Serializable {
private
BigDecimal
orderAmount
;
private
BigDecimal
orderAmount
;
@ApiModelProperty
(
value
=
"备注"
,
example
=
"项目延期"
)
@ApiModelProperty
(
value
=
"备注"
,
example
=
"项目延期"
)
@Length
(
max
=
300
,
message
=
"字符过长"
)
private
String
remark
;
private
String
remark
;
@ApiModelProperty
(
value
=
"需求id"
,
example
=
"83"
)
@ApiModelProperty
(
value
=
"需求id"
,
example
=
"83"
)
...
...
release-service/src/main/java/com/mmc/csf/release/entity/requirements/ServiceOrderFormDetailsDO.java
浏览文件 @
9515199b
...
@@ -102,6 +102,9 @@ public class ServiceOrderFormDetailsDO {
...
@@ -102,6 +102,9 @@ public class ServiceOrderFormDetailsDO {
@ApiModelProperty
(
value
=
"当前状态"
)
@ApiModelProperty
(
value
=
"当前状态"
)
private
String
doing
;
private
String
doing
;
@ApiModelProperty
(
value
=
"平台总收益"
)
private
BigDecimal
orderEarnings
;
public
ServiceOrderFormDetailsDTO
buildOrderFormDetails
()
{
public
ServiceOrderFormDetailsDTO
buildOrderFormDetails
()
{
return
ServiceOrderFormDetailsDTO
.
builder
()
return
ServiceOrderFormDetailsDTO
.
builder
()
...
@@ -128,6 +131,7 @@ public class ServiceOrderFormDetailsDO {
...
@@ -128,6 +131,7 @@ public class ServiceOrderFormDetailsDO {
.
createTime
(
this
.
createTime
)
.
createTime
(
this
.
createTime
)
.
updateTime
(
this
.
updateTime
)
.
updateTime
(
this
.
updateTime
)
.
orderStatus
(
this
.
orderStatus
)
.
orderStatus
(
this
.
orderStatus
)
.
orderEarnings
(
this
.
orderEarnings
)
.
build
();
.
build
();
}
}
}
}
release-service/src/main/resources/mapper/requirements/BackRequirementsDao.xml
浏览文件 @
9515199b
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
<result
property=
"requireDescription"
column=
"require_description"
/>
<result
property=
"requireDescription"
column=
"require_description"
/>
<result
property=
"orderStatus"
column=
"order_status"
/>
<result
property=
"orderStatus"
column=
"order_status"
/>
<result
property=
"doing"
column=
"doing"
/>
<result
property=
"doing"
column=
"doing"
/>
<result
property=
"orderEarnings"
column=
"order_earnings"
/>
<collection
property=
"orderEarningsDTO"
ofType=
"com.mmc.csf.infomation.dto.PlatformOrderEarningsDTO"
<collection
property=
"orderEarningsDTO"
ofType=
"com.mmc.csf.infomation.dto.PlatformOrderEarningsDTO"
select=
"selectOrderEarnings"
select=
"selectOrderEarnings"
column=
"{requirementsInfoId=id}"
>
column=
"{requirementsInfoId=id}"
>
...
@@ -128,9 +129,11 @@
...
@@ -128,9 +129,11 @@
ra.update_order_amount,
ra.update_order_amount,
ri.require_description,
ri.require_description,
sf.order_status,
sf.order_status,
sf.doing
sf.doing,
ra.order_earnings
FROM requirements_info ri
FROM requirements_info ri
LEFT JOIN requirements_amount ra ON ri.id = ra.requirements_info_id
LEFT JOIN requirements_amount ra
ON ri.id = ra.requirements_info_id
LEFT JOIN requirements_service rs ON rs.requirements_info_id = ri.id
LEFT JOIN requirements_service rs ON rs.requirements_info_id = ri.id
LEFT JOIN service_flow sf ON ri.service_flow_id = sf.id
LEFT JOIN service_flow sf ON ri.service_flow_id = sf.id
WHERE ri.id = #{requirementsInfoId}
WHERE ri.id = #{requirementsInfoId}
...
...
release-service/src/main/resources/mapper/requirements/RequirementsDao.xml
浏览文件 @
9515199b
...
@@ -407,9 +407,10 @@
...
@@ -407,9 +407,10 @@
WHERE NOT EXISTS(
WHERE NOT EXISTS(
SELECT rs.requirements_info_id FROM requirements_service rs WHERE ri.id = rs.requirements_info_id)
SELECT rs.requirements_info_id FROM requirements_service rs WHERE ri.id = rs.requirements_info_id)
AND ri.service_flow = 1
AND ri.service_flow = 1
and ri.is_deleted = 0
AND ri.is_deleted = 0
AND ri.service_flow_id != 7
ORDER BY ri.order_level_amount DESC,
ORDER BY ri.order_level_amount DESC,
ri.id DESC
ri.id DESC
</select>
</select>
<select
id=
"detailPublish"
resultType=
"com.mmc.csf.release.entity.requirements.RequirementsInfoDO"
>
<select
id=
"detailPublish"
resultType=
"com.mmc.csf.release.entity.requirements.RequirementsInfoDO"
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论