1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.mindskip.xzs.service;
|
| import com.mindskip.xzs.domain.ExamPaperSubject;
|
| import java.util.List;
|
| public interface ExamPaperSubjectService extends BaseService<ExamPaperSubject>{
|
| /**
| * 批量添加
| * @param list
| * @return
| */
| Integer saves(List<ExamPaperSubject> list);
|
| /**
| * 根据exam_paper_id查询
| * @param id
| * @return
| */
| List<ExamPaperSubject> getByExamPaperId(Integer id);
|
| /**
| * 根据exam_paper_id删除
| * @param id
| * @return
| */
| Integer removeByExamPaperId(Integer id);
| }
|
|