xuhy
3 天以前 508f3e225df87e0da974424981e7782fc5ce875c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.system.domain.TGoods;
import com.ruoyi.system.query.TGoodsQuery;
import com.ruoyi.system.vo.TGoodsVO;
 
/**
 * <p>
 * 商品管理 服务类
 * </p>
 *
 * @author xiaochen
 * @since 2024-08-14
 */
public interface TGoodsService extends IService<TGoods> {
 
    /**
     * 查询商品管理分页列表
     * @param query
     * @return
     */
    PageInfo<TGoodsVO> pageList(TGoodsQuery query);
 
    /**
     * 删除商品管理
     * @param shopId
     */
    void deleteByShopId(Long shopId);
}