|
|
@ -55,10 +55,10 @@ |
|
|
|
and a.work_order_type = #{vo.workOrderType} |
|
|
|
and a.work_order_type = #{vo.workOrderType} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.workOrderNo != null and vo.workOrderNo != ''"> |
|
|
|
<if test="vo.workOrderNo != null and vo.workOrderNo != ''"> |
|
|
|
and a.work_order_no = #{vo.workOrderNo} |
|
|
|
and a.work_order_no LIKE CONCAT('%', #{vo.workOrderNo}, '%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.description != null and vo.description != ''"> |
|
|
|
<if test="vo.description != null and vo.description != ''"> |
|
|
|
and a.description = #{vo.description} |
|
|
|
and a.description LIKE CONCAT('%', #{vo.description}, '%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.maintenanceTaskType != null and vo.maintenanceTaskType != ''"> |
|
|
|
<if test="vo.maintenanceTaskType != null and vo.maintenanceTaskType != ''"> |
|
|
|
and a.maintenance_task_type = #{vo.maintenanceTaskType} |
|
|
|
and a.maintenance_task_type = #{vo.maintenanceTaskType} |
|
|
@ -67,7 +67,7 @@ |
|
|
|
and a.user_status = #{vo.userStatus} |
|
|
|
and a.user_status = #{vo.userStatus} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.responsibilityTeam != null and vo.responsibilityTeam != ''"> |
|
|
|
<if test="vo.responsibilityTeam != null and vo.responsibilityTeam != ''"> |
|
|
|
and a.responsibility_team = #{vo.responsibilityTeam} |
|
|
|
and a.responsibility_team LIKE CONCAT('%', #{vo.responsibilityTeam}, '%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.station != null and vo.station != ''"> |
|
|
|
<if test="vo.station != null and vo.station != ''"> |
|
|
|
and b.station = ${vo.station} |
|
|
|
and b.station = ${vo.station} |
|
|
@ -109,7 +109,7 @@ |
|
|
|
and a.work_order_no LIKE CONCAT('%', #{vo.workOrderNo}, '%') |
|
|
|
and a.work_order_no LIKE CONCAT('%', #{vo.workOrderNo}, '%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.description != null and vo.description != ''"> |
|
|
|
<if test="vo.description != null and vo.description != ''"> |
|
|
|
and a.description = LIKE CONCAT('%', #{vo.description}, '%') |
|
|
|
and a.description LIKE CONCAT('%', #{vo.description}, '%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.maintenanceTaskType != null and vo.maintenanceTaskType != ''"> |
|
|
|
<if test="vo.maintenanceTaskType != null and vo.maintenanceTaskType != ''"> |
|
|
|
and a.maintenance_task_type = #{vo.maintenanceTaskType} |
|
|
|
and a.maintenance_task_type = #{vo.maintenanceTaskType} |
|
|
@ -118,7 +118,7 @@ |
|
|
|
and a.user_status = #{vo.userStatus} |
|
|
|
and a.user_status = #{vo.userStatus} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.responsibilityTeam != null and vo.responsibilityTeam != ''"> |
|
|
|
<if test="vo.responsibilityTeam != null and vo.responsibilityTeam != ''"> |
|
|
|
and a.responsibility_team = LIKE CONCAT('%', #{vo.responsibilityTeam}, '%') |
|
|
|
and a.responsibility_team LIKE CONCAT('%', #{vo.responsibilityTeam}, '%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="vo.station != null and vo.station != ''"> |
|
|
|
<if test="vo.station != null and vo.station != ''"> |
|
|
|
and b.station = ${vo.station} |
|
|
|
and b.station = ${vo.station} |
|
|
|