UserServiceImp.java 1.4 KB
package com.example.demo.service.imp;

import com.example.demo.mapper.UserMapper;
import com.example.demo.model.User;
import com.example.demo.service.UserService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service(value = "userService")
public class UserServiceImp implements UserService{

    @Autowired
    private UserMapper userMapper;

   public int deleteByPrimaryKey(Integer userId){
        return userMapper.deleteByPrimaryKey(userId);
    }

    public int insert(User record){
        return userMapper.insert(record);
    }

    public int insertSelective(User record){
        return userMapper.insertSelective(record);
    }

    public User selectByPrimaryKey(Integer userId){
        return  userMapper.selectByPrimaryKey(userId);
    }

    public int updateByPrimaryKeySelective(User record){
        return userMapper.updateByPrimaryKeySelective(record);
    }

    public int updateByPrimaryKey(User record){
        return userMapper.updateByPrimaryKey(record);
    }

    public PageInfo<User> findAllUser(int pageNum, int pageSize){
        PageHelper.startPage(pageNum,pageSize);
        List<User> users = userMapper.selectUsers();
        PageInfo<User> result = new PageInfo<User>(users);
        return result;

    }
}