培训添加返回值

This commit is contained in:
bianyadong
2024-05-09 10:34:14 +08:00
parent 95e074d97d
commit 7298997b76
12 changed files with 52 additions and 141 deletions

View File

@@ -63,5 +63,15 @@
and region_path like concat('%/', #{regionId}, '/%')
</if>
</select>
<select id="getStoreNumByStoreIds" resultType="java.lang.String">
select store_num
from store_${enterpriseId}
where is_delete = 'effective'
<if test="storeIds != null">
<foreach collection="storeIds" item="item" separator="," open="and store_id in (" close=")">
#{item}
</foreach>
</if>
</select>
</mapper>