supplier.java

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

JAVA
26
字号
package apusic.myshop.supplier.ejb;import java.rmi.RemoteException;import javax.ejb.EJBObject;public interface Supplier extends EJBObject {  public int getSuppId() throws RemoteException;  public String getName() 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 void setSuppId(int suppId) throws RemoteException;  public void setName(String name) 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;}

⌨️ 快捷键说明

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