1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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<Chapter> list); List<Chapter> selectByAnalyse(int analyseId); }