获得SKU回收站分页列表1

This commit is contained in:
xuelijun
2025-08-07 10:36:38 +08:00
parent cde19e180a
commit 525cf97121
31 changed files with 509 additions and 545 deletions

View File

@@ -15,4 +15,13 @@
and properties like concat('%', #{properties}, '%')
</if>
</select>
<select id="getSkuListByName" resultType="com.tashow.cloud.product.dto.SkuDO" >
select sku_id, properties, delete_time,deleted from tz_sku
<if test="properties != null and properties != ''">
and properties like concat('%', #{propertiesName}, '%')
</if>
</select>
</mapper>