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
b956ae2b
Commit
b956ae2b
authored
Jan 06, 2026
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
前端对接问题修复63
parent
e9119fda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
12 deletions
+7
-12
yd-csf-service/src/main/java/com/yd/csf/service/vo/CommissionExpectedExportDTO.java
+7
-12
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/vo/CommissionExpectedExportDTO.java
View file @
b956ae2b
...
...
@@ -15,22 +15,19 @@ import java.util.Date;
@Data
@ContentRowHeight
(
15
)
@HeadRowHeight
(
20
)
@ColumnWidth
(
2
5
)
@ColumnWidth
(
2
0
)
public
class
CommissionExpectedExportDTO
{
@ExcelProperty
(
"应收账款编号"
)
@ColumnWidth
(
20
)
private
String
receivableNo
;
@ExcelProperty
(
"应收款类型"
)
private
String
commissionBizType
;
@ExcelProperty
(
"保单号"
)
@ColumnWidth
(
20
)
private
String
policyNo
;
@ExcelProperty
(
"对账公司"
)
@ColumnWidth
(
20
)
private
String
reconciliationCompany
;
@ExcelProperty
(
"佣金期数"
)
...
...
@@ -40,13 +37,13 @@ public class CommissionExpectedExportDTO {
private
Integer
totalPeriod
;
@ExcelProperty
(
"来佣名称"
)
@ColumnWidth
(
20
)
private
String
commissionName
;
@ExcelProperty
(
"来佣类型"
)
private
String
commissionType
;
@ExcelProperty
(
"预计入账比例(%)"
)
@ColumnWidth
(
25
)
private
BigDecimal
commissionRatio
;
@ExcelProperty
(
"来佣币种"
)
...
...
@@ -54,7 +51,7 @@ public class CommissionExpectedExportDTO {
@ExcelProperty
(
"预计来佣日期"
)
@DateTimeFormat
(
"yyyy-MM-dd"
)
@ColumnWidth
(
1
5
)
@ColumnWidth
(
2
5
)
private
Date
commissionDate
;
@ExcelProperty
(
"入账状态"
)
...
...
@@ -65,23 +62,21 @@ public class CommissionExpectedExportDTO {
private
String
statusDesc
;
@ExcelProperty
(
"预计入账金额(HKD)"
)
@ColumnWidth
(
2
0
)
@ColumnWidth
(
2
5
)
private
BigDecimal
expectedAmount
;
@ExcelProperty
(
"已入账金额(HKD)"
)
@ColumnWidth
(
2
0
)
@ColumnWidth
(
2
5
)
private
BigDecimal
paidAmount
;
@ExcelProperty
(
"已入账比例(%)"
)
@ColumnWidth
(
20
)
private
BigDecimal
paidRatio
;
@ExcelProperty
(
"待入账金额(HKD)"
)
@ColumnWidth
(
2
0
)
@ColumnWidth
(
2
5
)
private
BigDecimal
pendingAmount
;
@ExcelProperty
(
"待入账比例(%)"
)
@ColumnWidth
(
20
)
private
BigDecimal
pendingRatio
;
@ExcelProperty
(
"备注"
)
...
...
@@ -104,7 +99,7 @@ public class CommissionExpectedExportDTO {
public
static
CommissionExpectedExportDTO
convertToExportDTO
(
CommissionExpected
vo
)
{
CommissionExpectedExportDTO
dto
=
new
CommissionExpectedExportDTO
();
dto
.
setReceivableNo
(
vo
.
getReceivableNo
());
dto
.
setCommissionBizType
(
vo
.
getCommissionBizType
()
);
dto
.
setCommissionBizType
(
"R"
.
equals
(
vo
.
getCommissionBizType
())
?
"关联保单应收单"
:
"非关联保单应收单"
);
dto
.
setPolicyNo
(
vo
.
getPolicyNo
());
dto
.
setReconciliationCompany
(
vo
.
getReconciliationCompany
());
dto
.
setCommissionPeriod
(
vo
.
getCommissionPeriod
());
...
...
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