yujian
2019-03-14 4aadf484e193995c23ee1d5bb1971a497d2f9a0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.yeshi.fanli.dao.mybatis;
 
import com.yeshi.fanli.entity.common.Config;
 
public interface ConfigMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(Config record);
 
    int insertSelective(Config record);
 
    Config selectByPrimaryKey(Long id);
    
    Config selectByKey(String key);
 
    int updateByPrimaryKeySelective(Config record);
 
    int updateByPrimaryKey(Config record);
}