InformationMapper.java 624 Bytes
package com.server.web.common.mapping;

import org.apache.ibatis.annotations.Param;

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

/**
 * Created by weiwenfu@163.com on 2020/3/12 下午 4:41.
 */
public interface InformationMapper {
    List<Map<String, Object>> categoryDetail(@Param("firstId") Long id);

    List<Map<String, Object>> secondClassDetailInformation(Map<String, Object> param);

    Integer secondClassDetailInformationTotal(Map<String, Object> param);

    List<Map<String, Object>> secondClassDetailCourse(Map<String, Object> param);

    Integer secondClassDetailCourseTotal(Map<String, Object> param);
}