公告板
版本库
filestore
活动
搜索
登录
林致杰
/
MERGE
代码合并
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
第一次无注释的源码
linzhijie
2021-04-12
c632636e2f5b4188b430f5efc9d9f68c8dbe3d6d
[~lzj/MERGE.git]
/
src
/
main
/
java
/
com
/
ots
/
project
/
exam
/
service
/
BaseService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ots.project.exam.service;
public interface BaseService<T> {
int deleteById(Integer id);
int insert(T record);
int insertByFilter(T record);
T selectById(Integer id);
int updateByIdFilter(T record);
int updateById(T record);
}