Helius
2021-06-24 c13cc7349ca2a5ffa8eb1d41c583ceef2647abdb
1
2
3
4
5
6
7
8
9
10
11
12
package com.xzx.gc.shop.mapper;
 
import com.xzx.gc.entity.ScoreGoodsImages;
import com.xzx.gc.util.GcMapper;
 
import java.util.List;
 
public interface ScoreGoodsImagesMapper extends GcMapper<ScoreGoodsImages> {
 
    List<String> selectScoreGoodsImagesByGoodsId(long id);
 
}