| | |
| | | package com.yeshi.fanli.service.impl.tlj;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | import com.yeshi.fanli.dao.mybatis.tlj.UserTaoLiJinGiveRecordMapper;
|
| | | import com.yeshi.fanli.entity.bus.tlj.UserTaoLiJinGiveRecord;
|
| | | import com.yeshi.fanli.service.inter.tlj.UserTaoLiJinGiveRecordService;
|
| | |
|
| | | @Service
|
| | | public class UserTaoLiJinGiveRecordServiceImpl implements UserTaoLiJinGiveRecordService {
|
| | |
|
| | | @Resource
|
| | | private UserTaoLiJinGiveRecordMapper userTaoLiJinGiveRecordMapper;
|
| | |
|
| | | |
| | | @Override
|
| | | public void insertSelective(UserTaoLiJinGiveRecord record) {
|
| | | userTaoLiJinGiveRecordMapper.insertSelective(record);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public UserTaoLiJinGiveRecord selectByPrimaryKey(Long id) {
|
| | | return userTaoLiJinGiveRecordMapper.selectByPrimaryKey(id);
|
| | | }
|
| | | |
| | | |
| | | @Override
|
| | | public void updateByPrimaryKeySelective(UserTaoLiJinGiveRecord record) {
|
| | | userTaoLiJinGiveRecordMapper.updateByPrimaryKeySelective(record);
|
| | | }
|
| | | |
| | | @Override
|
| | | public List<UserTaoLiJinGiveRecord> overdueList(int count) {
|
| | | return userTaoLiJinGiveRecordMapper.overdueList(count);
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.service.impl.tlj; |
| | | |
| | | import java.util.List; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.yeshi.fanli.dao.mybatis.tlj.UserTaoLiJinGiveRecordMapper; |
| | | import com.yeshi.fanli.entity.bus.tlj.UserTaoLiJinGiveRecord; |
| | | import com.yeshi.fanli.service.inter.tlj.UserTaoLiJinGiveRecordService; |
| | | |
| | | @Service |
| | | public class UserTaoLiJinGiveRecordServiceImpl implements UserTaoLiJinGiveRecordService { |
| | | |
| | | @Resource |
| | | private UserTaoLiJinGiveRecordMapper userTaoLiJinGiveRecordMapper; |
| | | |
| | | |
| | | @Override |
| | | public void insertSelective(UserTaoLiJinGiveRecord record) { |
| | | userTaoLiJinGiveRecordMapper.insertSelective(record); |
| | | } |
| | | |
| | | @Override |
| | | public UserTaoLiJinGiveRecord selectByPrimaryKey(Long id) { |
| | | return userTaoLiJinGiveRecordMapper.selectByPrimaryKey(id); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public void updateByPrimaryKeySelective(UserTaoLiJinGiveRecord record) { |
| | | userTaoLiJinGiveRecordMapper.updateByPrimaryKeySelective(record); |
| | | } |
| | | |
| | | @Override |
| | | public List<UserTaoLiJinGiveRecord> overdueList(int count) { |
| | | return userTaoLiJinGiveRecordMapper.overdueList(count); |
| | | } |
| | | |
| | | } |