bug尝试修复

This commit is contained in:
2025-07-15 15:20:26 +08:00
parent 68c4320a58
commit 0aadd61d5b
4 changed files with 9 additions and 18 deletions

View File

@@ -55,8 +55,8 @@
<select id="selectIndustryMaterialList" parameterType="IndustryMaterial" resultMap="IndustryMaterialResult">
<include refid="selectIndustryMaterialVo"/>
<where>
<if test="specification != null and specification != ''">and specification = #{specification}</if>
<if test="technology != null and technology != ''">and technology = #{technology}</if>
<if test="specification != null">and specification = #{specification}</if>
<if test="technology != null">and technology = #{technology}</if>
<if test="operation != null ">and operation = #{operation}</if>
<if test="diameter != null ">and diameter = #{diameter}</if>
<if test="batchId != null ">and batch_id = #{batchId}</if>
@@ -67,7 +67,7 @@
<if test="finalDiameter != null and finalDiameter != ''">and final_diameter = #{finalDiameter}</if>
<if test="weight != null and weight != ''">and weight = #{weight}</if>
<if test="width != null and width != ''">and width = #{width}</if>
<if test="delFlag != null and delFlag != ''">and del_flag = #{delFlag}</if>
<if test="delFlag != null">and del_flag = #{delFlag}</if>
</where>
order by sort
</select>