GITLAB

陈杰 / smartCampus

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • smartcampus
  • ..
  • service
  • ChapterService.java
  • 87ec6d46   第一章信息 Browse Code »
    陈杰
    2019-10-24 09:39:36 +0800  
ChapterService.java 284 Bytes
Edit Raw Blame History
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);
}