Commit cf571500 by zhangxingmin

预约分页查询-增加字段返回

parent a83b541d
......@@ -90,4 +90,14 @@ public class ApiAppointmentPageResponse {
* 创建人用户名
*/
private String creatorName;
/**
* 意向预约时间
*/
private LocalDateTime intentionAppointmentTime;
/**
* 确定预约时间
*/
private LocalDateTime confirmAppointmentTime;
}
......@@ -24,7 +24,9 @@
a.business_represent_account1,
a.creator_id,
a.create_time,
a.creator_name
a.creator_name,
a.intention_appointment_time,
a.confirm_appointment_time
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