|
@@ -66,8 +66,14 @@
|
|
|
<if test="deleteFlag != null">
|
|
|
and repair.delete_flag = #{deleteFlag}
|
|
|
</if>
|
|
|
+ <if test="sbId != null and sbId != ''">
|
|
|
+ and repair.sb_id = #{sbId}
|
|
|
+ </if>
|
|
|
+ <if test="errorTypeId != null and errorTypeId != ''">
|
|
|
+ and repair.error_type_id = #{errorTypeId}
|
|
|
+ </if>
|
|
|
<if test="keyword != null and keyword != ''">
|
|
|
- and repair.id like concat(concat('%',#{keyword}),'%')
|
|
|
+ and repair.error_content like concat(concat('%',#{keyword}),'%')
|
|
|
</if>
|
|
|
</sql>
|
|
|
<select id="selectList" parameterType="com.platform.dao.dto.repair.RepairSchemeDTO"
|