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