zss
2 天以前 3effe2402062b93d9ea0ea3fed340156f2be937b
src/main/resources/mapper/quality/QualityTestStandardMapper.xml
@@ -13,10 +13,10 @@
        <if test="c.standardName != null and c.standardName != '' ">
            AND standard_name like concat('%',#{c.standardName},'%')
        </if>
        <if test="c.state != null and c.state != '' ">
        <if test="c.state != null ">
            AND state =#{c.state}
        </if>
        <if test="c.inspectType != null and c.inspectType != '' ">
        <if test="c.inspectType != null ">
            AND inspect_type =#{c.inspectType}
        </if>
    </select>
@@ -30,5 +30,6 @@
        <if test="process!='' and process!=null">
            and pp.name = #{process}
        </if>
        order by qts.id desc
    </select>
</mapper>