Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-csf
Commits
5a30fd12
Commit
5a30fd12
authored
Apr 29, 2026
by
jianan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'refs/heads/test_zjn' into test
parents
30600f52
53a7b5f3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
1 deletions
+18
-1
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiExpectedFortuneServiceImpl.java
+4
-0
yd-csf-service/src/main/java/com/yd/csf/service/model/Fortune.java
+1
-1
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FortuneServiceImpl.java
+5
-0
yd-csf-service/src/main/java/com/yd/csf/service/vo/FortuneVO.java
+6
-0
yd-csf-service/src/main/resources/mappers/ExpectedFortuneMapper.xml
+1
-0
yd-csf-service/src/main/resources/mappers/FortuneMapper.xml
+1
-0
No files found.
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiExpectedFortuneServiceImpl.java
View file @
5a30fd12
...
...
@@ -1164,6 +1164,10 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
if
(
request
==
null
)
{
return
queryWrapper
;
}
// 默认查询条件 是否分期出账 1-是 0-否 2-拆分的原纪录
queryWrapper
.
in
(
"is_part"
,
0
,
1
);
// 获取参数
String
payableNo
=
request
.
getPayableNo
();
String
policyNo
=
request
.
getPolicyNo
();
...
...
yd-csf-service/src/main/java/com/yd/csf/service/model/Fortune.java
View file @
5a30fd12
...
...
@@ -43,7 +43,7 @@ public class Fortune implements Serializable {
private
String
fortuneBizType
;
/**
* 是否
部分出账拆分出来的出账记录 0=No, 1=Yes
* 是否
拆分出来的出账 1-是 0-否 2-拆分的原纪录
*/
private
Integer
isPart
;
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FortuneServiceImpl.java
View file @
5a30fd12
...
...
@@ -79,6 +79,11 @@ public class FortuneServiceImpl extends ServiceImpl<FortuneMapper, Fortune>
if
(
fortuneQueryRequest
==
null
)
{
return
queryWrapper
;
}
// 默认查询条件 是否分期出账 1-是 0-否 2-拆分的原纪录
queryWrapper
.
in
(
"is_part"
,
0
,
1
);
// 获取参数
String
reconciliationYearMonth
=
fortuneQueryRequest
.
getReconciliationYearMonth
();
List
<
String
>
statusList
=
fortuneQueryRequest
.
getStatusList
();
String
policyNo
=
fortuneQueryRequest
.
getPolicyNo
();
...
...
yd-csf-service/src/main/java/com/yd/csf/service/vo/FortuneVO.java
View file @
5a30fd12
...
...
@@ -42,6 +42,12 @@ public class FortuneVO implements Serializable {
private
String
fortuneBizType
;
/**
* 是否拆分出来的出账 1-是 0-否 2-拆分的原纪录
*/
@Schema
(
description
=
"是否拆分出来的出账 1-是 0-否 2-拆分的原纪录"
)
private
Integer
isPart
;
/**
* 预计出账业务ID
*/
@Schema
(
description
=
"预计出账业务ID"
)
...
...
yd-csf-service/src/main/resources/mappers/ExpectedFortuneMapper.xml
View file @
5a30fd12
...
...
@@ -48,6 +48,7 @@
#{item}
</foreach>
</if>
AND ef.is_part in (0,1)
</where>
</select>
...
...
yd-csf-service/src/main/resources/mappers/FortuneMapper.xml
View file @
5a30fd12
...
...
@@ -80,6 +80,7 @@
#{fortuneId}
</foreach>
</if>
AND f.is_part in (0,1)
GROUP BY f.policy_no
</select>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment