获得SKU回收站分页列表

This commit is contained in:
xuelijun
2025-08-05 17:20:56 +08:00
parent 360c497c49
commit cde19e180a
9 changed files with 112 additions and 99 deletions

View File

@@ -9,4 +9,10 @@
文档可见https://www.iocoder.cn/MyBatis/x-plugins/
-->
<select id="getSkuRecycleBinPageList" resultType="com.tashow.cloud.product.vo.sku.SkuRecycleBinVO" >
select sku_id, properties, delete_time from tz_sku where prod_id = #{prodId} and deleted = 1
<if test="properties != null and properties != ''">
and properties like concat('%', #{properties}, '%')
</if>
</select>
</mapper>