From 936c3c3391821f96a23e57eab909ca6d03029d7b Mon Sep 17 00:00:00 2001 From: chenbingxuan <3581044601@qq.com> Date: Sat, 13 Jan 2024 09:42:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E8=AF=B7=E6=B1=82=E8=B7=AF?= =?UTF-8?q?=E5=BE=84(=E6=82=A3=E8=80=85)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/doctor/controller/UserVideoController.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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);