| | |
| | | package com.yeshi.fanli.service.impl.user;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | import com.yeshi.fanli.dao.mybatis.msg.SystemZnxMapper;
|
| | | import com.yeshi.fanli.entity.system.SystemZnx;
|
| | | import com.yeshi.fanli.service.inter.user.SystemZnxService;
|
| | | @Service
|
| | | public class SystemZnxServiceImpl implements SystemZnxService{
|
| | | |
| | | @Resource
|
| | | private SystemZnxMapper systemZnxMapper;
|
| | | |
| | | /**
|
| | | * 插入数据
|
| | | */
|
| | | @Override
|
| | | public void save(SystemZnx systemZnx) {
|
| | | systemZnxMapper.insertSelective(systemZnx);
|
| | | }
|
| | | |
| | | @Override
|
| | | public List<SystemZnx> listbyCreateTime(long createTime){
|
| | | return systemZnxMapper.listbyCreateTime(createTime);
|
| | | }
|
| | | |
| | | @Override
|
| | | public List<SystemZnx> listbyUidAndCreateTime(long uid, long createTime) {
|
| | | return systemZnxMapper.listbyUidAndCreateTime(uid, createTime);
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.service.impl.user; |
| | | |
| | | import java.util.List; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.yeshi.fanli.dao.mybatis.msg.SystemZnxMapper; |
| | | import com.yeshi.fanli.entity.system.SystemZnx; |
| | | import com.yeshi.fanli.service.inter.user.SystemZnxService; |
| | | @Service |
| | | public class SystemZnxServiceImpl implements SystemZnxService{ |
| | | |
| | | @Resource |
| | | private SystemZnxMapper systemZnxMapper; |
| | | |
| | | /** |
| | | * 插入数据 |
| | | */ |
| | | @Override |
| | | public void save(SystemZnx systemZnx) { |
| | | systemZnxMapper.insertSelective(systemZnx); |
| | | } |
| | | |
| | | @Override |
| | | public List<SystemZnx> listbyCreateTime(long createTime){ |
| | | return systemZnxMapper.listbyCreateTime(createTime); |
| | | } |
| | | |
| | | @Override |
| | | public List<SystemZnx> listbyUidAndCreateTime(long uid, long createTime) { |
| | | return systemZnxMapper.listbyUidAndCreateTime(uid, createTime); |
| | | } |
| | | } |