Browse Source

维修执行界面增加 是否退回筛选

java8
赵宏斌 5 months ago
parent
commit
31f8e7a5b0
  1. 3
      src/main/resources/mapper/pms/EamMapper.xml

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

@ -935,6 +935,9 @@
<if test="query.objectID != null and query.objectID != ''">
AND a.ObjectID like '%' + #{query.objectID} +'%'
</if>
<if test="query.isReturn != null and query.isReturn != ''">
AND a.is_return = #{query.isReturn}
</if>
<if test="query.planOperatorName != null and query.planOperatorName != ''">
AND a.PlanOperatorName like '%' + #{query.planOperatorName} +'%'
</if>

Loading…
Cancel
Save