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
4a99383b
Commit
4a99383b
authored
Dec 02, 2025
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
77917d5f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
8 deletions
+19
-8
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiProductPlanMainInfoDto.java
+5
-0
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointmentfile/ItineraryDto.java
+6
-6
yd-csf-service/src/main/java/com/yd/csf/service/model/ProductPlan.java
+6
-0
yd-csf-service/src/main/resources/mappers/AppointmentMapper.xml
+2
-2
No files found.
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiProductPlanMainInfoDto.java
View file @
4a99383b
...
@@ -119,4 +119,9 @@ public class ApiProductPlanMainInfoDto {
...
@@ -119,4 +119,9 @@ public class ApiProductPlanMainInfoDto {
* 是否参加递增保障权益: 0-否, 1-是(字典)
* 是否参加递增保障权益: 0-否, 1-是(字典)
*/
*/
private
Integer
isJoin
;
private
Integer
isJoin
;
/**
* 保单征费
*/
private
BigDecimal
policyLevy
;
}
}
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointmentfile/ItineraryDto.java
View file @
4a99383b
...
@@ -72,12 +72,6 @@ public class ItineraryDto {
...
@@ -72,12 +72,6 @@ public class ItineraryDto {
private
String
eachIssuePremium
;
private
String
eachIssuePremium
;
/**
/**
* 保单证费(产品计划-保单证费)
*/
@PdfField
(
"policyFee"
)
private
String
policyFee
;
/**
* 币种(产品计划-货币(字典))
* 币种(产品计划-货币(字典))
*/
*/
@PdfField
(
"currency"
)
@PdfField
(
"currency"
)
...
@@ -112,4 +106,10 @@ public class ItineraryDto {
...
@@ -112,4 +106,10 @@ public class ItineraryDto {
*/
*/
@PdfField
(
"confirmAppointmentTime"
)
@PdfField
(
"confirmAppointmentTime"
)
private
String
confirmAppointmentTime
;
private
String
confirmAppointmentTime
;
/**
* 保单征费
*/
@PdfField
(
"policyFee"
)
private
String
policyFee
;
}
}
yd-csf-service/src/main/java/com/yd/csf/service/model/ProductPlan.java
View file @
4a99383b
...
@@ -141,6 +141,12 @@ public class ProductPlan implements Serializable {
...
@@ -141,6 +141,12 @@ public class ProductPlan implements Serializable {
private
Integer
isJoin
;
private
Integer
isJoin
;
/**
/**
* 保单征费
*/
@TableField
(
"policy_levy"
)
private
BigDecimal
policyLevy
;
/**
* 通用备注
* 通用备注
*/
*/
@TableField
(
"remark"
)
@TableField
(
"remark"
)
...
...
yd-csf-service/src/main/resources/mappers/AppointmentMapper.xml
View file @
4a99383b
...
@@ -67,8 +67,8 @@
...
@@ -67,8 +67,8 @@
a.arrival_time,a.meeting_point,a.confirm_appointment_time,
a.arrival_time,a.meeting_point,a.confirm_appointment_time,
a.signing_address,a.business_represent_name1,
a.signing_address,a.business_represent_name1,
a.business_represent_mobile1_code,a.business_represent_mobile1,
a.business_represent_mobile1_code,a.business_represent_mobile1,
t.name,i.name as insurantName,pp.payment_term,pp.each_issue_premium,
t.name,i.name as insurantName,pp.payment_term,pp.each_issue_premium,
pp.policy_levy as policyFee,
pp.currency,pp.product_name,(pp.
payment_term*pp.each_issue_premium
) as total
pp.currency,pp.product_name,(pp.
each_issue_premium + pp.policy_levy
) as total
from appointment a
from appointment a
left join product_plan pp on a.appointment_biz_id = pp.appointment_biz_id and pp.is_deleted = 0
left join product_plan pp on a.appointment_biz_id = pp.appointment_biz_id and pp.is_deleted = 0
left join insurant i on a.appointment_biz_id = i.appointment_biz_id and i.is_deleted = 0
left join insurant i on a.appointment_biz_id = i.appointment_biz_id and i.is_deleted = 0
...
...
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