|
|
@@ -198,19 +198,19 @@
|
|
|
and t.dept_id=#{deptId}
|
|
|
</if>
|
|
|
<if test="deptName!=null and deptName!=''">
|
|
|
- and v.dept_name=#{deptName}
|
|
|
+ and v.dept_name like concat('%', #{deptName}, '%')
|
|
|
</if>
|
|
|
<if test="lineId!=null and lineId!=''">
|
|
|
and t.line_id=#{lineId}
|
|
|
</if>
|
|
|
<if test="lineName!=null and lineName!=''">
|
|
|
- and v.line_name=#{lineName}
|
|
|
+ and v.line_name like concat('%', #{lineName}, '%')
|
|
|
</if>
|
|
|
<if test="workArea!=null and workArea!=''">
|
|
|
and t.work_area=#{workArea}
|
|
|
</if>
|
|
|
<if test="substationName!=null and substationName!=''">
|
|
|
- and t.substation_name=#{substationName}
|
|
|
+ and t.substation_name like concat('%', #{substationName}, '%')
|
|
|
</if>
|
|
|
<if test="orderNum!=null and orderNum!=''">
|
|
|
and t.order_num=#{orderNum}
|