package com.jevon.service; import com.jevon.model.Chapter; import java.util.List; /** * @author chen * @version 1.0 * @date 2019/10/24 0024 9:09 */ public interface ChapterService { int insertBatch(List list); List selectByAnalyse(int analyseId); }