Commit 069c7ae1 by zhangxingmin

push

parent 45bcdfef
......@@ -62,7 +62,7 @@ public class ApiAppointmentPageResponse {
private BigDecimal eachIssuePremium;
/**
* 货币(字典)(显示内容-产品计划表:货币)
* 货币(字典)(显示内容-产品计划表:货币)保单币种
*/
private String currency;
......@@ -100,4 +100,19 @@ public class ApiAppointmentPageResponse {
* 确定预约时间
*/
private LocalDateTime confirmAppointmentTime;
/**
* 签单日
*/
private LocalDateTime signDate;
/**
* 签单员姓名
*/
private String signName;
/**
* 付款频率(字典)
*/
private String paymentFrequency;
}
......@@ -13,7 +13,7 @@
concat(pp.issue_number, '年') as paymentTerm,
a.status,
pp.each_issue_premium,
pp.policy_currency,
pp.policy_currency as currency,
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.confirm_appointment_time, '%Y-%m-%d %H:%i'),
......@@ -26,7 +26,10 @@
a.create_time,
a.creator_name,
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
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment