| | |
| | | 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.vo.CollectTypeNumVO; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result add(VideoForm form); |
| | | Result add(WxVideoForm form); |
| | | |
| | | /** |
| | | * 修改 |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result update(VideoForm form); |
| | | Result update(WxVideoForm form); |
| | | |
| | | /** |
| | | * 批量删除 |
| | |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result publish(VideoForm form); |
| | | Result publish(WxVideoForm form); |
| | | |
| | | /** |
| | | * 平台端视频分页 |
| | |
| | | * @return |
| | | */ |
| | | Result getAuthorCollectVideoPage(AuthorVideoQuery query); |
| | | |
| | | /** |
| | | * 保存视频主页的个人信息修改 |
| | | * |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result homePageInfoEdit(VideoHomePageInfoForm form); |
| | | |
| | | /** |
| | | * 小程序-视频详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | Result wxDetail(String id); |
| | | |
| | | /** |
| | | * 大健康视频发布 |
| | | * |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result healthVideo(HealthVideoForm form); |
| | | /** |
| | | * 修改大健康视频 |
| | | * |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result updateHealthVideo(HealthVideoForm form); |
| | | /** |
| | | * 大健康视频列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Result healthPage(HealthVideoQuery query); |
| | | /** |
| | | * 删除大健康视频 |
| | | |
| | | * @param id 主键id |
| | | * @return |
| | | */ |
| | | Result delHealth(String id); |
| | | } |