首页>代码>maven+ssm+bootstrap+jsp实现简单的用户增删改查实例>/SSM_demo/src/main/java/com/ssm/service/impl/UserServiceImpl.java
package com.ssm.service.impl;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.ssm.mapper.UserMapper;
import com.ssm.model.User;
import com.ssm.service.UserService;
@Service
/**
 * 描述:用户service实现类<BR>
 * 创建人:<BR>
 * 时间:2017年7月10日下午7:11:57<BR>
 * @version
 */
public class UserServiceImpl implements UserService {

    /**
     * 注入UserMapper接口
     */
    @Autowired
    private UserMapper userMapper;

    /**
     * 新增用户
     */
    @Override
    public void saveUser(User user) {
        userMapper.saveUser(user);
    }

    /**
     * 更新用户
     */
    @Override
    public boolean updateUser(User user) {
        return userMapper.updateUser(user);
    }

    /**
     * 根据Id删除用户
     */
    @Override
    public boolean deleteUser(int id) {
        return userMapper.deleteUser(id);
    }

    /**
     * 根据id查找用户
     */
    @Override
    public User findUserById(int id) {
        User user = userMapper.findUserById(id);
        return user;
    }

    /**
     * 查询所有用户
     */
    @Override
    public List<User> findAll() {
        List<User> allUser = userMapper.findAll();
        return allUser;
    }

}
最近下载更多
李亮  LV19 2023年8月29日
ly0729  LV2 2023年5月28日
543666826  LV33 2021年11月20日
Mywang  LV4 2021年11月18日
tiantian459  LV11 2021年8月31日
Demo1111  LV30 2021年8月31日
jay1992  LV14 2021年8月13日
hhh12345  LV7 2021年5月31日
缓缓归来  LV11 2021年4月3日
SYX__0707  LV6 2021年3月31日
最近浏览更多
2032867896  LV1 6月20日
xin xie  LV1 6月13日
h G24741  LV2 3月12日
yolo_light  LV1 2023年12月21日
wwwww816  LV5 2023年12月19日
xiongwei11231  LV8 2023年12月6日
uni-code_0123  LV1 2023年11月27日
fff2003  LV9 2023年11月20日
李亮  LV19 2023年8月29日
 LV7 2023年8月21日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友