|
@@ -29,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<select id="selectValidateCoefById" parameterType="Long" resultMap="ValidateCoefResult">
|
|
|
<include refid="selectValidateCoefVo"/>
|
|
|
- where id = #{id} and del_flag = 0
|
|
|
+ where id = #{id}
|
|
|
</select>
|
|
|
|
|
|
<insert id="insertValidateCoef" parameterType="ValidateCoef" useGeneratedKeys="true" keyProperty="id">
|
|
@@ -89,7 +89,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="MLVSS != null">MLVSS = #{MLVSS},</if>
|
|
|
<if test="ext != null">ext = #{ext},</if>
|
|
|
</trim>
|
|
|
- ,revision = revision + 1
|
|
|
where id = #{id}
|
|
|
</update>
|
|
|
|
|
@@ -131,6 +130,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="dateBegin != null "> and validate_date >= #{dateBegin}</if>
|
|
|
<if test="dateEnd != null "> and validate_date <= #{dateEnd}</if>
|
|
|
</where>
|
|
|
- and del_flag = 0 order by id desc
|
|
|
+ order by id desc
|
|
|
</select>
|
|
|
</mapper>
|