|  |  | 
 |  |  | import cc.mrbird.febs.common.entity.FebsResponse; | 
 |  |  | import cc.mrbird.febs.common.entity.QueryRequest; | 
 |  |  | import cc.mrbird.febs.mall.dto.AddMallGoodsDto; | 
 |  |  | import cc.mrbird.febs.mall.dto.MallGoodsUpdateDto; | 
 |  |  | import cc.mrbird.febs.mall.dto.UpMallGoodsDto; | 
 |  |  | import cc.mrbird.febs.mall.entity.MallGoods; | 
 |  |  | import cc.mrbird.febs.mall.entity.MallGoodsCategory; | 
 |  |  | import cc.mrbird.febs.mall.vo.AdminMailGoodsDetailVo; | 
 |  |  | import cc.mrbird.febs.mall.vo.AdminMailGoodsUpdateVo; | 
 |  |  | import cc.mrbird.febs.mall.vo.AdminMallGoodsTreeVo; | 
 |  |  | import cc.mrbird.febs.mall.vo.AdminMallGoodsVo; | 
 |  |  | import com.baomidou.mybatisplus.core.metadata.IPage; | 
 |  |  | import com.baomidou.mybatisplus.extension.service.IService; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  |  | 
 |  |  | public interface IAdminMallGoodsService extends IService<MallGoods> { | 
 |  |  |  | 
 |  |  |     IPage<AdminMallGoodsVo> getCategoryListInPage(MallGoods mallGoods, QueryRequest request); | 
 |  |  |  | 
 |  |  |     FebsResponse addMallGoods(AddMallGoodsDto addMallGoodsDto); | 
 |  |  |  | 
 |  |  |     FebsResponse upMallGoods(Long id); | 
 |  |  |  | 
 |  |  |     FebsResponse downMallGoods(Long id); | 
 |  |  |  | 
 |  |  |     FebsResponse delMallGoods(Long id); | 
 |  |  |  | 
 |  |  |     AdminMailGoodsDetailVo getMallGoodsInfoById(long id); | 
 |  |  |  | 
 |  |  |     AdminMailGoodsUpdateVo getMallGoodsUpdateInfoById(long id); | 
 |  |  |  | 
 |  |  |     MallGoods selectGoodsById(long id); | 
 |  |  |  | 
 |  |  |     FebsResponse updateMallGoods(MallGoodsUpdateDto mallGoodsUpdateDto); | 
 |  |  |  | 
 |  |  |     List<AdminMallGoodsTreeVo> getAllGoodsTree(); | 
 |  |  |  | 
 |  |  |     FebsResponse goodsHot(Long id); | 
 |  |  |  | 
 |  |  |     FebsResponse goodsNotHot(Long id); | 
 |  |  | } |