📄 iuserservice.java
字号:
package com.model.service;
import java.util.List;
import com.web.bo.User;
import com.model.exception.UserException;
public interface IUserService {
public User login(String username,String password) throws UserException;
public boolean logout() throws UserException;
public boolean register(User user) throws UserException;
public boolean delete(Integer uid) throws UserException;
public boolean edit(User user) throws UserException;
public List browse() throws UserException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -