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
cdd348a4
Commit
cdd348a4
authored
Sep 29, 2025
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加业务员字段返回
parent
2a85838d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletions
+20
-1
yd-csf-feign/src/main/java/com/yd/csf/feign/response/appointment/ApiAppointmentPageResponse.java
+16
-0
yd-csf-service/src/main/resources/mappers/AppointmentMapper.xml
+4
-1
No files found.
yd-csf-feign/src/main/java/com/yd/csf/feign/response/appointment/ApiAppointmentPageResponse.java
View file @
cdd348a4
...
@@ -3,6 +3,7 @@ package com.yd.csf.feign.response.appointment;
...
@@ -3,6 +3,7 @@ package com.yd.csf.feign.response.appointment;
import
lombok.Data
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.time.LocalDateTime
;
/**
/**
* 预约分页查询出参
* 预约分页查询出参
...
@@ -64,4 +65,19 @@ public class ApiAppointmentPageResponse {
...
@@ -64,4 +65,19 @@ public class ApiAppointmentPageResponse {
* 时间(显示-预约信息表:意向预约时间+业务代表1 姓名+业务代表1 电话号码+签单地址) TODO
* 时间(显示-预约信息表:意向预约时间+业务代表1 姓名+业务代表1 电话号码+签单地址) TODO
*/
*/
private
String
time
;
private
String
time
;
/**
* 业务代表1姓名(业务员)
*/
private
String
businessRepresentName1
;
/**
* 创建人ID
*/
private
String
creatorId
;
/**
* 创建时间
*/
private
LocalDateTime
createTime
;
}
}
yd-csf-service/src/main/resources/mappers/AppointmentMapper.xml
View file @
cdd348a4
...
@@ -19,7 +19,10 @@
...
@@ -19,7 +19,10 @@
'\n','业务代表:','\n',a.business_represent_name1,'\n',
'\n','业务代表:','\n',a.business_represent_name1,'\n',
'(',a.business_represent_mobile1_code,'-',a.business_represent_mobile1,')','\n',
'(',a.business_represent_mobile1_code,'-',a.business_represent_mobile1,')','\n',
'预约地址:',a.signing_address)
'预约地址:',a.signing_address)
) as time
) as time,
a.business_represent_account1,
a.creator_id,
a.create_time
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