xiaoyong931011
2022-09-22 7cf7a80569d3cb907e0260abc3b2dbd36ec6c4c2
src/main/java/cc/mrbird/febs/mall/mapper/MallGoodsStyleMapper.java
@@ -4,8 +4,13 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface MallGoodsStyleMapper extends BaseMapper<MallGoodsStyle> {
    void deleteByGoodsId(@Param("id")Long id);
    MallGoodsStyle selectByStyleName(@Param("name")String styleName, @Param("goodsId")Long id);
    List<MallGoodsStyle> selectByGoodsId(@Param("goodsId") Long goodsId);
}