添加supplier_id

This commit is contained in:
YY
2025-07-17 15:51:03 +08:00
parent 233cd82f6c
commit c9e7bce7c8

View File

@ -288,6 +288,9 @@
<if test="vo.name!=null and vo.name!=''"> <if test="vo.name!=null and vo.name!=''">
AND ccl.name LIKE CONCAT('%',#{vo.name},'%') AND ccl.name LIKE CONCAT('%',#{vo.name},'%')
</if> </if>
<if test="vo.supplierId!=null and vo.supplierId!=''">
AND ccls.supplier_id = {vo.supplierId}
</if>
</select> </select>
</mapper> </mapper>