| | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dsh.activity.entity.BenefitsVideos; |
| | | import io.swagger.models.auth.In; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | /** |
| | | * 获取福利课程列表 |
| | | * |
| | | * @param uid |
| | | * @param classificationId |
| | | * @param pageSize |
| | | * @param pageNo |
| | | * @param offset |
| | | * @param limit |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> queryBenefitsVideosList(@Param("uid") Integer uid, @Param("classificationId") Integer classificationId, |
| | | @Param("pageSize") Integer pageSize, @Param("pageNo") Integer pageNo); |
| | | @Param("ids") List<Integer> ids, @Param("offset") Integer offset, @Param("limit") Integer limit); |
| | | |
| | | List<BenefitsVideos> getBenefitVideoById(@Param("id") Integer id, @Param("state") Integer state); |
| | | |
| | | List<BenefitsVideos> getBybIdAndcId(@Param("bId") Integer benefitsVideoClassificationId, @Param("cId") Integer courseId); |
| | | } |