yujian
2019-10-11 dc952ba7d77aef6d1dacaa668f1f20c2b56889f7
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
package com.yeshi.fanli.service.impl.money.extract;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.mybatis.ExtractWeiXinRecordMapper;
import com.yeshi.fanli.entity.bus.user.ExtractWeiXinRecord;
import com.yeshi.fanli.service.inter.money.extract.ExtractWeiXinRecordService;
 
@Service
public class ExtractWeiXinRecordServiceImpl implements ExtractWeiXinRecordService {
    
    @Resource
    private ExtractWeiXinRecordMapper extractWeiXinRecordMapper;
 
    
    @Override
    public void insertSelective(ExtractWeiXinRecord record) {
        extractWeiXinRecordMapper.insertSelective(record);
    }
    
    
    @Override
    public void updateByPrimaryKeySelective(ExtractWeiXinRecord record) {
        extractWeiXinRecordMapper.updateByPrimaryKeySelective(record);
    }
 
}