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
dfa57c5e
Commit
dfa57c5e
authored
Apr 10, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
6e6f6e92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
yd-csf-api/src/main/java/com/yd/csf/api/dto/ExecuteBillingDto.java
+5
-0
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiExpectedFortuneServiceImpl.java
+6
-2
No files found.
yd-csf-api/src/main/java/com/yd/csf/api/dto/ExecuteBillingDto.java
View file @
dfa57c5e
...
...
@@ -38,6 +38,11 @@ public class ExecuteBillingDto {
private
Integer
issueNumber
;
/**
* 出账总期数(实际出账期数)
*/
private
Integer
paymentTerm
;
/**
* 保单和转介人信息
*/
private
QueryPolicyAndBrokerDto
policyAndBrokerDto
;
...
...
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiExpectedFortuneServiceImpl.java
View file @
dfa57c5e
...
...
@@ -533,6 +533,7 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
.
name
(
brokerDto
.
getBrokerName
())
.
policyAndBrokerDto
(
brokerDto
)
.
issueNumber
(
i
)
.
paymentTerm
(
paymentTerm
)
.
build
());
if
(!
CollectionUtils
.
isEmpty
(
commissionRuleBindingList
))
{
...
...
@@ -542,6 +543,7 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
.
name
(
binding
.
getTargetName
())
.
policyAndBrokerDto
(
brokerDto
)
.
issueNumber
(
i
)
.
paymentTerm
(
paymentTerm
)
.
build
());
}
}
...
...
@@ -674,7 +676,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
//发佣期数
.
fortunePeriod
(
dto
.
getIssueNumber
())
//发佣总期数
.
fortuneTotalPeriod
(
brokerDto
.
getPaymentTerm
())
// .fortuneTotalPeriod(brokerDto.getPaymentTerm())
.
fortuneTotalPeriod
(
dto
.
getPaymentTerm
())
//发佣类型 TODO
// .fortuneType()
//发佣日期 保单生效日期 + 3个月
...
...
@@ -749,7 +752,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
//发佣期数
.
fortunePeriod
(
dto
.
getIssueNumber
())
//发佣总期数
.
fortuneTotalPeriod
(
brokerDto
.
getPaymentTerm
())
// .fortuneTotalPeriod(brokerDto.getPaymentTerm())
.
fortuneTotalPeriod
(
dto
.
getPaymentTerm
())
//发佣类型 TODO
// .fortuneType()
//发佣日期
...
...
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