1.sku上下架

This commit is contained in:
2024-07-24 18:02:58 +08:00
parent 0cf417322b
commit b00dc349d6
3 changed files with 66 additions and 5 deletions

View File

@@ -53,4 +53,7 @@ public interface TbProductSkuMapper {
@Select("select * from tb_product_sku where is_grounding=1 and product_id=#{id}")
List<TbProductSku> selectByProductCheckGrounding(@Param("id") Integer id);
@Select("select * from tb_product_sku where is_grounding=1 and is_del=0 and product_id=#{id}")
List<TbProductSku> selectGroundingByProId(Integer id);
}