| | |
| | | package com.ruoyi.other.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.other.api.domain.Goods; |
| | | import com.ruoyi.other.vo.GoodsVO; |
| | |
| | | GoodsVO goodsDetail(Long goodsId); |
| | | |
| | | List<Goods> getGoodsListByShopId(Integer shopId); |
| | | |
| | | void addGoods(Goods goods); |
| | | |
| | | void updateManageGoods(Goods goods); |
| | | |
| | | IPage<Goods> getManageGoodsList(Page<Goods> page, Goods goods); |
| | | |
| | | Goods getManageGoodsDetail(Long goodsId); |
| | | } |