📄 usersession.java
字号:
package ejb;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
import java.util.List;
public interface UserSession extends EJBObject {
public boolean check(String us, String pw) throws RemoteException;
public boolean inster(String us, String name, String pw,
String shenfenzheng, String telephone, String address,
String youzhengbianma, String email) throws
RemoteException;
public boolean delete(String us) throws RemoteException;
public boolean xiugai(String us, String name, String pw,
String shenfenzheng, String telephone, String address,
String youzhengbianma, String email) throws
RemoteException;
public boolean jiance(String us) throws RemoteException;
public List selectAllUser() throws RemoteException;
public List selectOnlyUser(String userCode) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -