From 01d87b23a7004b71d737f7a82a5a065db8b39a56 Mon Sep 17 00:00:00 2001 From: pserimal Date: Fri, 16 Jun 2023 17:04:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=91=98=E5=B7=A5=E7=AB=AF=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E9=9D=A2=E8=AF=95=E8=AF=A6=E6=83=85=E5=AE=8C=E5=96=84=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/HyPartnerInterviewPlanMapper.xml | 27 ++-- .../cool/store/vo/interview/InterviewVO.java | 129 +++++------------- 2 files changed, 56 insertions(+), 100 deletions(-) diff --git a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerInterviewPlanMapper.xml b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerInterviewPlanMapper.xml index bb17f44a3..07857ac18 100644 --- a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerInterviewPlanMapper.xml +++ b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerInterviewPlanMapper.xml @@ -252,28 +252,28 @@ left join hy_partner_line_info hpll on hpip.partner_line_id = hpll.id left join hy_partner_user_info hpui on hpui.partner_id = hpip.partner_id - + hpui.username like concat('%',#{record.partnerName},'%') - + hpui.mobile like concat('%',#{record.partnerMobile},'%') - + hpip.room_id = #{record.roomId} - + hpui.username like concat('%',#{record.interviewerName},'%') - + hpui.mobile like concat('%',#{record.interviewerMobile},'%') - + hpip.room_status = #{record.roomStatus} - + hpip.start_time <= #{record.startTime} - + hpip.end_time >= #{record.endTime} @@ -281,6 +281,17 @@