diff --git a/doctor-modules/doctor-health/src/main/java/doctor/controller/UserVideoController.java b/doctor-modules/doctor-health/src/main/java/doctor/controller/UserVideoController.java index 64822fb..ab9643a 100644 --- a/doctor-modules/doctor-health/src/main/java/doctor/controller/UserVideoController.java +++ b/doctor-modules/doctor-health/src/main/java/doctor/controller/UserVideoController.java @@ -1,8 +1,6 @@ package doctor.controller; -import doctor.common.core.domain.R; -import doctor.domain.entity.UserVideoBuyEntity; -import doctor.domain.entity.UserVideoCollectionEntity; +import doctor.common.core.domain.HealthR; import doctor.domain.entity.UserWalletEntity; import doctor.domain.vo.UserVideoBuyVo; import doctor.domain.vo.UserVideoCollectionVo; @@ -29,7 +27,7 @@ public class UserVideoController { //用户视频收藏列表 @GetMapping("/findVideoCollectionList") - public HealthR> findVideoCollectionList(@RequestParam Integer page,@RequestParam Integer count){ + public HealthR> findVideoCollectionList(@RequestParam Integer page, @RequestParam Integer count){ startPage(page,count); List userVideoCollectionVos=userVideoService.findVideoCollectionList(); return HealthR.ok(userVideoCollectionVos);