TKzyCourseService.java 770 Bytes
package com.server.web.common.service;

import com.server.web.common.model.TKzyCourse;

import java.util.Map;

/**
 * Created by weiwenfu@163.com on 2018/12/5 下午 1:45.
 */
public interface TKzyCourseService {
    Map<String,Object> hotCourse();

    Map<String,Object> livingCourse();

    Map<String,Object> recordCourse(Long typeId,Integer pageNo, Integer pageSize);

    Map<String,Object> livingCourseDetail(Long courseId,Long userId);
    Map<String,Object> recordCourseDetail(Long courseId,Long userId);

    Map<String,Object> commentList(Long courseId,Integer pageNo, Integer pageSize);


    Map<String,Object> comment(Long courseId, Long userId, String comment);

    Map<String,Object> courseType();


    TKzyCourse selectByPrimaryKey(Long courseId);

}