gdg
2020-12-01 7f01ee9b40b5ee18f53caed2132bbe6150975b3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.nanometer.smartlab.dao;
 
 
import java.util.List;
import java.util.Map;
 
public interface BaseMapper<T, PK> {
 
    public T selectByPrimaryKey(PK id);
 
    public int deleteByPrimaryKey(PK id);
 
    public int insertSelective(T t);
 
    public int updateByPrimaryKeySelective(T t);
 
    public List<T> getListBySelective(Map params);
 
    public int countBySelective(Map params);
 
}