| | |
| | | import com.ruoyi.system.domain.TGoods; |
| | | import com.ruoyi.system.query.TGoodsQuery; |
| | | import com.ruoyi.system.vo.TGoodsVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author xiaochen |
| | | * @since 2024-08-14 |
| | | */ |
| | | @Mapper |
| | | public interface TGoodsMapper extends BaseMapper<TGoods> { |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | List<TGoodsVO> pageList(@Param("query") TGoodsQuery query, @Param("pageInfo") PageInfo<TGoodsVO> pageInfo); |
| | | |
| | | /** |
| | | * 根据商家id删除商品管理 |
| | | * @param shopId |
| | | */ |
| | | void deleteByShopId(@Param("shopId")Long shopId); |
| | | } |