customer.java

来自「一个优秀的供应商管理系统」· Java 代码 · 共 40 行

JAVA
40
字号
package apusic.myshop.customer.ejb;import java.rmi.RemoteException;import javax.ejb.EJBObject;import apusic.myshop.customer.model.CustomerModel;public interface Customer extends EJBObject {    public String getUserId() throws RemoteException;    public String getPassword() throws RemoteException;	  public String getName() throws RemoteException;    public String getSex() throws RemoteException;    public String getCompany() throws RemoteException;    public String getCid() throws RemoteException;    public String getAddress() throws RemoteException;    public String getProvince() throws RemoteException;	  public String getCity() throws RemoteException;    public String getZip() throws RemoteException;	  public String getPhone() throws RemoteException;    public String getEmail() throws RemoteException;    public java.sql.Date getRegDate() throws RemoteException;    public CustomerModel getDetails() throws RemoteException;    public void setUserId(String userId) throws RemoteException;    public void setPassword(String password) throws RemoteException;    public void setName(String name) throws RemoteException;    public void setSex(String sex) throws RemoteException;    public void setCompany(String company) throws RemoteException;    public void setCid(String cid) throws RemoteException;    public void setAddress(String address) throws RemoteException;    public void setProvince(String province) throws RemoteException;    public void setCity(String city) throws RemoteException;    public void setZip(String zip) throws RemoteException;    public void setPhone(String phone) throws RemoteException;    public void setEmail(String email) throws RemoteException;    public void setRegDate(java.sql.Date regDate) throws RemoteException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?