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); }