| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.dtos.shop.PageComShopGoodsDTO; |
| | | import com.panzhihua.common.model.dtos.shop.PageComShopStoreDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.shop.ShopGoodsVO; |
| | | import com.panzhihua.common.model.vos.shop.ShopStoreVO; |
| | | import com.panzhihua.service_community.model.dos.ComShopStoreDO; |
| | | |
| | | /** |
| | |
| | | * @return ComShopStoreVO |
| | | */ |
| | | R pageStoreList(PageComShopStoreDTO pageComShopStoreDTO); |
| | | |
| | | /** |
| | | * 保存店铺 |
| | | * @param storeVO |
| | | * @return |
| | | */ |
| | | R saveStore(ShopStoreVO storeVO); |
| | | |
| | | |
| | | /** |
| | | * 编辑店铺、启用、禁用 |
| | | * |
| | | * @param id 商铺ID |
| | | * @param storeVO |
| | | * @return |
| | | */ |
| | | R editStore(Long id, ShopStoreVO storeVO); |
| | | |
| | | /** |
| | | * 删除店铺 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | R deleteStore(Long[] id); |
| | | |
| | | /** |
| | | * 获取详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | R getOneInfo(Long id); |
| | | } |