From 2e85e2dda945ca269d87b7f1f6147246be9accfa Mon Sep 17 00:00:00 2001 From: maven <2163098428@qq.com> Date: 星期一, 18 八月 2025 13:21:05 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/pim_yys' --- src/main/resources/mapper/lavorissue/LavorIssueMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/lavorissue/LavorIssueMapper.xml b/src/main/resources/mapper/lavorissue/LavorIssueMapper.xml index fabf558..dcde507 100644 --- a/src/main/resources/mapper/lavorissue/LavorIssueMapper.xml +++ b/src/main/resources/mapper/lavorissue/LavorIssueMapper.xml @@ -55,6 +55,12 @@ <if test="req.issueDate != null"> and t1.issue_date < #{req.issueDate} </if> + <if test="req.staffId != null"> + and t1.staff_id = #{req.staffId} + </if> + <if test="req.season != null and req.season != ''"> + and (t1.issue_date >= #{req.startDate} and t1.issue_date <= #{req.endDate}) + </if> </where> </select> </mapper> \ No newline at end of file -- Gitblit v1.9.3