Merge remote-tracking branch 'origin/main'

main
sunhonglei 4 months ago
commit 6ee62c7887
  1. 4
      ccic-exam/src/main/resources/mappers/ExamScheduleMapper.xml

@ -28,10 +28,10 @@
info.is_deleted = 0
and paper.is_deleted = 0
<if test="examName != null and examName != ''">
AND info.exam_name LIKE '%' + #{examName} + '%'
AND info.exam_name LIKE '%' || #{examName} || '%'
</if>
<if test="paperName != null and paperName != ''">
AND paper.paper_name LIKE '%' + #{paperName} + '%'
AND paper.paper_name LIKE '%' || #{paperName} || '%'
</if>
<if test="regulatedIndustry != null and regulatedIndustry != ''">
AND ind.industry_id = #{regulatedIndustry}

Loading…
Cancel
Save