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
72f64342
Commit
72f64342
authored
Apr 30, 2026
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
出账检核-增加币种4
parent
571d88fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
10 deletions
+46
-10
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FortuneServiceImpl.java
+2
-2
yd-csf-service/src/main/java/com/yd/csf/service/vo/FortuneVO.java
+44
-8
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FortuneServiceImpl.java
View file @
72f64342
...
...
@@ -1079,7 +1079,7 @@ public class FortuneServiceImpl extends ServiceImpl<FortuneMapper, Fortune>
BigDecimal
hkdToPayoutRate
=
editExchangeRateRequest
.
getHkdToPayoutRate
();
BigDecimal
hkdAmount
=
editExchangeRateRequest
.
getHkdAmount
();
// 更新 fortune 的
结算汇率、港币金额
// 更新 fortune 的
字段
this
.
lambdaUpdate
()
.
set
(
Fortune:
:
getRuleAmount
,
ruleAmount
)
.
set
(
Fortune:
:
getRuleCurrency
,
ruleCurrency
)
...
...
@@ -1094,7 +1094,7 @@ public class FortuneServiceImpl extends ServiceImpl<FortuneMapper, Fortune>
.
eq
(
Fortune:
:
getId
,
fortune
.
getId
())
.
update
();
// 更新 expected fortune 的
出账原币种结算汇率、港币金额
// 更新 expected fortune 的
字段
expectedFortuneService
.
lambdaUpdate
()
.
set
(
ExpectedFortune:
:
getRuleAmount
,
ruleAmount
)
.
set
(
ExpectedFortune:
:
getRuleCurrency
,
ruleCurrency
)
...
...
yd-csf-service/src/main/java/com/yd/csf/service/vo/FortuneVO.java
View file @
72f64342
...
...
@@ -168,24 +168,60 @@ public class FortuneVO implements Serializable {
private
String
fortuneType
;
/**
*
出账
金额
*
保单币种
金额
*/
@Schema
(
description
=
"
应出账
金额"
)
private
BigDecimal
a
mount
;
@Schema
(
description
=
"
保单币种
金额"
)
private
BigDecimal
ruleA
mount
;
/**
*
出账
币种
*
保单
币种
*/
@Schema
(
description
=
"
出账
币种"
)
private
String
c
urrency
;
@Schema
(
description
=
"
保单
币种"
)
private
String
ruleC
urrency
;
/**
*
结算汇率
*
保单币种→港币汇率(入账检核汇率)
*/
@Schema
(
description
=
"
结算汇率
"
)
@Schema
(
description
=
"
保单币种→港币汇率(入账检核汇率)
"
)
private
BigDecimal
exchangeRate
;
/**
* 原币种
*/
@Schema
(
description
=
"原币种"
)
private
String
originalCurrency
;
/**
* 原币种金额
*/
@Schema
(
description
=
"原币种金额"
)
private
BigDecimal
originalAmount
;
/**
* 原币种→港币汇率
*/
@Schema
(
description
=
"原币种→港币汇率"
)
private
BigDecimal
originalToHkdRate
;
/**
* 发放币种
*/
@Schema
(
description
=
"发放币种"
)
private
String
payoutCurrency
;
/**
* 发放币种金额
*/
@Schema
(
description
=
"发放币种金额"
)
private
BigDecimal
payoutAmount
;
/**
* 港币→发放币种汇率
*/
@Schema
(
description
=
"港币→发放币种汇率"
)
private
BigDecimal
hkdToPayoutRate
;
/**
* 港币出账金额
*/
@Schema
(
description
=
"港币出账金额"
)
...
...
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