| | |
| | | import com.ruoyi.goods.domain.vo.*; |
| | | import com.ruoyi.system.api.domain.poji.goods.Goods; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.system.api.domain.vo.MgtSelectGoodsPageVo; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @return void |
| | | */ |
| | | void deleteGoodsTag(String goodsTag); |
| | | |
| | | /** |
| | | * @description 通过id获取商品列表 |
| | | * @author jqs |
| | | * @date 2023/6/13 15:55 |
| | | * @param goodsIds |
| | | * @return List<Goods> |
| | | */ |
| | | List<Goods> listGoodsByGoodsId(String goodsIds); |
| | | |
| | | /** |
| | | * @description 分页获取商品选择列表 |
| | | * @author jqs |
| | | * @date 2023/6/13 16:33 |
| | | * @param page |
| | | * @param mgtSelectGoodsPageDto |
| | | * @return List<MgtSelectGoodsPageVo> |
| | | */ |
| | | List<MgtSelectGoodsPageVo> pageMgtSelectGoods(Page page,MgtSelectGoodsPageDto mgtSelectGoodsPageDto); |
| | | } |