| | |
| | | package com.dsh.course.feignClient.activity; |
| | | |
| | | import com.dsh.course.feignClient.activity.model.BenefitsVedioChangeStateVO; |
| | | import com.dsh.course.feignClient.activity.model.BenefitsVideoClassification; |
| | | import com.dsh.course.feignClient.activity.model.BenefitsVideos; |
| | | import com.dsh.course.feignClient.activity.model.QueryBenefitsVedioVO; |
| | | import com.dsh.course.feignClient.activity.model.*; |
| | | import com.dsh.guns.modular.system.model.TQueryBenefitsVO; |
| | | import com.dsh.guns.modular.system.model.dto.GetBenefitVideoById; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | */ |
| | | @RequestMapping("/base/benefitVideo/changeState") |
| | | Object changeState(@RequestBody BenefitsVedioChangeStateVO vo); |
| | | |
| | | |
| | | /** |
| | | * 修改福利视频状态 |
| | | * @param changeBenefitsVedioState |
| | | */ |
| | | @RequestMapping("/base/benefitVideo/changeBenefitsVedioState") |
| | | void changeBenefitsVedioState(@RequestBody ChangeBenefitsVedioState changeBenefitsVedioState); |
| | | |
| | | /** |
| | | * 根据视频课程id删除福利视频数据 |
| | | * @param courseId |
| | | */ |
| | | @RequestMapping("/base/benefitVideo/delBenefitsVedio") |
| | | void delBenefitsVedio(@RequestBody Integer courseId); |
| | | |
| | | |
| | | /** |
| | | * 查看福利视频分类下视频 |
| | | * @return |
| | | */ |
| | | @RequestMapping("/base/benefitVideo/getBenefitVideoById") |
| | | public List<BenefitsVideos> getBenefitVideoById(@RequestBody Integer id); |
| | | public List<BenefitsVideos> getBenefitVideoById(@RequestBody GetBenefitVideoById getBenefitVideoById); |
| | | } |