admin
2019-08-28 0fdccf0fa23d0f039f563de9b31c974342d00a48
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
package com.yeshi.fanli.dao.mybatis;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.user.ExtractRecord;
 
public interface ExtractRecordMapper {
 
    int deleteByPrimaryKey(Long id);
    
    int deleteAll();
 
    int insert(ExtractRecord record);
 
    int insertSelective(ExtractRecord record);
 
    ExtractRecord selectByPrimaryKey(Long id);
    
    List<ExtractRecord> selectByUid(Long uid);
    
    List<ExtractRecord> selectByUidAndToday(Long uid);
 
    int updateByPrimaryKeySelective(ExtractRecord record);
 
    int updateByPrimaryKey(ExtractRecord record);
}