CommentMapper.java 314 Bytes
package com.server.web.common.mapping;

import java.util.List;
import java.util.Map;

/**
 * Created by weiwenfu@163.com on 2020/3/12 下午 2:58.
 */
public interface CommentMapper {
    List<Map<String,Object>> commentList(Long courseId, int i, Integer pageSize);

    Integer commentListTotal(Long courseId);
}