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);
|
}
|