去掉supermarket_material表

This commit is contained in:
sxu 2025-06-30 17:38:46 +08:00
parent 252c156d5f
commit 26129929bb
1 changed files with 0 additions and 3 deletions

View File

@ -94,7 +94,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include refid="selectCookMaterialVo"/>
<where>
cm.material_id = #{materialId}
<if test="goodsType != null "> and cm.goods_type = #{goodsType}</if>
</where>
</select>
@ -103,7 +102,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
material_code = #{materialCode}
<if test="materialId != null and materialId != ''"> and material_id != #{materialId}</if>
<if test="goodsType != null "> and cm.goods_type = #{goodsType}</if>
</where>
</select>
@ -112,7 +110,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
material_name = #{materialName}
<if test="materialId != null and materialId != ''"> and material_id != #{materialId}</if>
<if test="goodsType != null "> and cm.goods_type = #{goodsType}</if>
</where>
</select>