Browse Source

增加 反馈描述 查询条件

java8
赵宏斌 1 month ago
parent
commit
44cdf54498
  1. 3
      src/main/resources/mapper/pms/EamMapper.xml

3
src/main/resources/mapper/pms/EamMapper.xml

@ -1129,6 +1129,9 @@
<if test="query.repairType != null and query.repairType != ''">
AND a.repair_type = #{query.repairType}
</if>
<if test="query.feedBackDesc != null and query.feedBackDesc != ''">
AND b.FeedBackDesc like '%' +#{query.feedBackDesc}+'%'
</if>
and a.FunctionType =#{query.functionType}
</where>
ORDER BY a.PlanDate,

Loading…
Cancel
Save