KKSU
2024-01-11 ada59d11d10c4a5db3c748c1997ee4992ee54b3a
src/main/java/cc/mrbird/febs/mall/mapper/MallGoodsImagesMapper.java
@@ -1,5 +1,7 @@
package cc.mrbird.febs.mall.mapper;
import cc.mrbird.febs.mall.entity.MallGoodsImages;
import cc.mrbird.febs.mall.vo.AdminMailGoodsImagesVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
@@ -9,7 +11,11 @@
 * @author wzy
 * @date 2021-09-17
 **/
public interface MallGoodsImagesMapper extends BaseMapper<MallGoodsMapper> {
public interface MallGoodsImagesMapper extends BaseMapper<MallGoodsImages> {
    List<String> selectGoodsImagesByGoodsId(@Param("goodsId") Long goodsId);
    List<String> selectByGoodId(@Param("goodsId") long id);
    void deleteByGoodsId(@Param("goodsId")Long id);
}