话术联查产品拿名字

This commit is contained in:
2025-07-24 17:30:53 +08:00
parent d15db4f0dc
commit 6847c99995
4 changed files with 14 additions and 2 deletions

View File

@@ -18,6 +18,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="updateTime" column="update_time"/>
<result property="updateBy" column="update_by"/>
</resultMap>
<select id="selectVoPagePlus" resultType="com.klp.domain.vo.WmsProductSalesScriptVo">
SELECT s.*, p.product_code, p.product_name
FROM wms_product_sales_script s
LEFT JOIN wms_product p ON s.product_id = p.product_id
${ew.customSqlSegment}
</select>
</mapper>