New file |
| | |
| | | package com.ruoyi.other.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.other.api.domain.GoodsShop; |
| | | import com.ruoyi.other.vo.ShopGoodsList; |
| | | import com.ruoyi.other.vo.ShopGoodsListVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 服务类 |
| | | * </p> |
| | | * |
| | | * @author luodangjia |
| | | * @since 2024-11-20 |
| | | */ |
| | | public interface GoodsShopService extends IService<GoodsShop> { |
| | | |
| | | /** |
| | | * 获取门店授权的服务商品 |
| | | * @param shopGoodsListVo |
| | | * @return |
| | | */ |
| | | List<ShopGoodsList> getShopGoodsList(ShopGoodsListVo shopGoodsListVo); |
| | | } |