GITLAB

陈杰 / smartCampus

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • smartcampus
  • ..
  • service
  • StudentDetailService.java
  • ef5c16a0   试卷导入 Browse Code »
    陈杰
    2019-10-18 16:43:35 +0800  
StudentDetailService.java 253 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.jevon.service;

import com.jevon.model.StudentDetail;

import java.util.List;

/**
 * @author chen
 * @version 1.0
 * @date 2019/10/18 0018 13:46
 */
public interface StudentDetailService {

    int insertBatch(List<StudentDetail> list);

}