package com.xzx.gc.shop.mapper; import com.xzx.gc.entity.ScoreGoodsSku; import com.xzx.gc.shop.vo.ScoreGoodsSkuVo; import com.xzx.gc.util.GcMapper; import org.apache.ibatis.annotations.Param; import java.util.List; public interface ScoreGoodsSkuMapper extends GcMapper { List selectScoreGoodsSkuByGoodsIdAndStyleId(@Param("id")long id, @Param("styleId")Long styleId); void updateDelFlagById(@Param("id")Long id, @Param("delFlag")Short toShort); }