|
@ -53,7 +53,10 @@ public interface DfSuperviseTaskMapper extends BaseMapper<DfSuperviseTask> { |
|
|
WHERE("rw.name LIKE CONCAT('%',#{dto.name},'%')"); |
|
|
WHERE("rw.name LIKE CONCAT('%',#{dto.name},'%')"); |
|
|
} |
|
|
} |
|
|
if (StringUtils.isNotBlank(dto.getEngineeringManagementUnit())) { |
|
|
if (StringUtils.isNotBlank(dto.getEngineeringManagementUnit())) { |
|
|
WHERE("gl.ENGINEERING_MANAGEMENT_UNIT = #{dto.engineeringManagementUnit}"); |
|
|
WHERE("gl.ENGINEERING_MANAGEMENT_UNIT like concat('%', #{dto.engineeringManagementUnit}, '%')"); |
|
|
|
|
|
} |
|
|
|
|
|
if(StringUtils.isNotBlank(dto.getDikeName())){ |
|
|
|
|
|
WHERE("xx.dike_name LIKE CONCAT('%',#{dto.dikeName},'%')"); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
ORDER_BY("rw.done_time asc", "rw.update_time DESC"); |
|
|
ORDER_BY("rw.done_time asc", "rw.update_time DESC"); |
|
|