| | |
| | | package cn.lili.modules.lmk.service; |
| | | |
| | | import cn.lili.group.Add; |
| | | import cn.lili.modules.lmk.domain.entity.Video; |
| | | import cn.lili.modules.lmk.domain.form.*; |
| | | import cn.lili.modules.lmk.domain.query.AuthorVideoQuery; |
| | | import cn.lili.modules.lmk.domain.query.HealthVideoQuery; |
| | | import cn.lili.modules.lmk.domain.query.ManagerVideoQuery; |
| | | import cn.lili.modules.lmk.domain.query.*; |
| | | import cn.lili.modules.lmk.domain.vo.CollectTypeNumVO; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import cn.lili.base.Result; |
| | | import cn.lili.modules.lmk.domain.query.VideoQuery; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | Result recommendVideo(VideoQuery query); |
| | | |
| | | Result healthRecommendVideo(WxHealthVideoQuery query); |
| | | |
| | | /** |
| | | * 批量更新视频收藏数量 |
| | | * |
| | |
| | | * @return |
| | | */ |
| | | Result delHealth(String id); |
| | | |
| | | Result addKitchenVideo( KitchenVideoForm form); |
| | | |
| | | Result updateKitchenVideo( KitchenVideoForm form); |
| | | /** |
| | | * 厨神视频列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Result KitchenVideoQuery(KitchenVideoQuery query); |
| | | |
| | | Result delKitchen(String id); |
| | | |
| | | /** |
| | | * 视频商品查看 |
| | | * |
| | | * @param videoId |
| | | * @return |
| | | */ |
| | | Result getGoodsDetail(String videoId); |
| | | } |