b9411514
陈杰
first
|
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
30
|
package com.sincere.student.mapper;
import com.sincere.student.dto.MessageSearchDto;
import com.sincere.student.dto.PointSearchDto;
import com.sincere.student.dto.submit.SubmitLine;
import com.sincere.student.model.SubmitFile;
import java.util.List;
public interface UniversitySubmitFileMapper {
int deleteByPrimaryKey(Integer id);
int insert(SubmitFile record);
int insertSelective(SubmitFile record);
SubmitFile selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(SubmitFile record);
int updateByPrimaryKey(SubmitFile record);
int getListCount(MessageSearchDto dto);
List<SubmitFile> getList(MessageSearchDto dto);
List<SubmitLine> getAppList(PointSearchDto pointSearchDto);
int getAppListCount(PointSearchDto pointSearchDto);
}
|