Browse Source

标签

master
han\hanst 1 month ago
parent
commit
1d8fd3a2f4
  1. 6
      src/main/resources/mapper/base/BaseMapper.xml

6
src/main/resources/mapper/base/BaseMapper.xml

@ -209,13 +209,13 @@
<where>
AND rfl.ReportID = rfp.ReportID
<if test="userId != null and userId != ''">
and rfp.UserID LIKE #{userId}
and rfp.UserID LIKE CONCAT('%', #{userId}, '%')
</if>
<if test="labelNo != null and labelNo != ''">
and rfp.ReportID LIKE #{labelNo}
and rfp.ReportID LIKE CONCAT('%', #{labelNo}, '%')
</if>
<if test="labelName != null and labelName != ''">
and rfl.Reportfile LIKE #{labelName}
and rfp.IPAddress LIKE CONCAT('%', #{labelName}, '%')
</if>
<if test="printerName != null and printerName != ''">
and rfp.NewPrinterName LIKE #{printerName}

Loading…
Cancel
Save