luodangjia
2024-11-28 06f455915bb9d11caa8829942f9007809ee9ae3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.other.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.other.api.domain.Goods;
import com.ruoyi.other.vo.GoodsVO;
 
import java.util.List;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author luodangjia
 * @since 2024-11-20
 */
public interface GoodsService extends IService<Goods> {
 
    List<GoodsVO> goodsList(Goods goods);
 
    GoodsVO goodsDetail(Long goodsId);
 
    List<Goods> getGoodsListByShopId(Integer shopId);
}