📄 userserviceimpl.java
字号:
package com.model.service.impl;
import com.model.service.IUserService;
import java.util.List;
import com.model.exception.UserException;
import com.web.bo.User;
//创建 IUserService 接口的实现 UserServiceImpl 类
public class UserServiceImpl implements IUserService {
public User login(String username,String password)throws UserException{
return null;
}
public boolean logout() throws UserException {
// TODO Auto-generated method stub
return false;
}
public boolean register(User user) throws UserException {
// TODO Auto-generated method stub
return false;
}
public boolean delete(Integer uid) throws UserException {
// TODO Auto-generated method stub
return false;
}
public boolean edit(User user) throws UserException {
// TODO Auto-generated method stub
return false;
}
public List browse() throws UserException {
// TODO Auto-generated method stub
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -