ChapterMapper.java
282 Bytes
package com.jevon.mapper;
import com.jevon.model.Chapter;
import java.util.List;
/**
 * @author chen
 * @version 1.0
 * @date 2019/10/24 0024 9:04
 */
public interface ChapterMapper {
    int insertBatch(List<Chapter> list);
    List<Chapter> selectByAnalyse(int analyseId);
}