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
069c7ae1
Commit
069c7ae1
authored
Jan 15, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
45bcdfef
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
yd-csf-feign/src/main/java/com/yd/csf/feign/response/appointment/ApiAppointmentPageResponse.java
+16
-1
yd-csf-service/src/main/resources/mappers/AppointmentMapper.xml
+5
-2
No files found.
yd-csf-feign/src/main/java/com/yd/csf/feign/response/appointment/ApiAppointmentPageResponse.java
View file @
069c7ae1
...
@@ -62,7 +62,7 @@ public class ApiAppointmentPageResponse {
...
@@ -62,7 +62,7 @@ public class ApiAppointmentPageResponse {
private
BigDecimal
eachIssuePremium
;
private
BigDecimal
eachIssuePremium
;
/**
/**
* 货币(字典)(显示内容-产品计划表:货币)
* 货币(字典)(显示内容-产品计划表:货币)
保单币种
*/
*/
private
String
currency
;
private
String
currency
;
...
@@ -100,4 +100,19 @@ public class ApiAppointmentPageResponse {
...
@@ -100,4 +100,19 @@ public class ApiAppointmentPageResponse {
* 确定预约时间
* 确定预约时间
*/
*/
private
LocalDateTime
confirmAppointmentTime
;
private
LocalDateTime
confirmAppointmentTime
;
/**
* 签单日
*/
private
LocalDateTime
signDate
;
/**
* 签单员姓名
*/
private
String
signName
;
/**
* 付款频率(字典)
*/
private
String
paymentFrequency
;
}
}
yd-csf-service/src/main/resources/mappers/AppointmentMapper.xml
View file @
069c7ae1
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
concat(pp.issue_number, '年') as paymentTerm,
concat(pp.issue_number, '年') as paymentTerm,
a.status,
a.status,
pp.each_issue_premium,
pp.each_issue_premium,
pp.policy_currency,
pp.policy_currency
as currency
,
IF(a.status = 0 or a.status = 1,
IF(a.status = 0 or a.status = 1,
concat('意向预约时间:','\n',DATE_FORMAT(a.intention_appointment_time, '%Y-%m-%d %H:%i')),
concat('意向预约时间:','\n',DATE_FORMAT(a.intention_appointment_time, '%Y-%m-%d %H:%i')),
concat('确认预约时间:','\n',DATE_FORMAT(a.confirm_appointment_time, '%Y-%m-%d %H:%i'),
concat('确认预约时间:','\n',DATE_FORMAT(a.confirm_appointment_time, '%Y-%m-%d %H:%i'),
...
@@ -26,7 +26,10 @@
...
@@ -26,7 +26,10 @@
a.create_time,
a.create_time,
a.creator_name,
a.creator_name,
a.intention_appointment_time,
a.intention_appointment_time,
a.confirm_appointment_time
a.confirm_appointment_time,
a.sign_date,
(select aus.name from appointment_user_sign aus where aus.appointment_biz_id = a.appointment_biz_id limit 1) as signName,
pp.payment_frequency
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 policyholder p on a.appointment_biz_id = p.appointment_biz_id and p.is_deleted = 0
left join policyholder p on a.appointment_biz_id = p.appointment_biz_id and p.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