InformationService.java 577 Bytes
package com.server.web.common.service;

import java.util.Map;

/**
 * Created by weiwenfu@163.com on 2020/3/12 下午 4:53.
 */
public interface InformationService {
    Map<String, Object> secondClassList(Long firstId);

    Map<String, Object> secondClassDetail(Long secondId, Integer pageNo, Integer pageSize);

    Map<String, Object> informationDetail(Long informationId);

    Map<String, Object> informationCommentList(Long informationId, Integer pageNo, Integer pageSize);

    Map<String, Object> informationComment(Long informationId, Long userId, String comment);
}