xiaoyong931011
2023-08-18 544c84ec7e9e285015cd79d48e6e4c7dcf6e6f7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.dapp.mapper;
 
import cc.mrbird.febs.dapp.entity.MallGoodsImages;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author wzy
 * @date 2021-09-17
 **/
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);
}