⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customers.java

📁 此程序都是企业级 的数据库开发程序 全面揭示了JAVA对数据库的操作
💻 JAVA
字号:
package mvc.entitybeans.customers;

import javax.ejb.EJBObject;
import java.rmi.RemoteException;

public interface Customers extends EJBObject {

  /* Accessors */
  public Integer getCustomerId() throws RemoteException;
  public String getCustomerFirstName() throws RemoteException;
  public String getCustomerLastName() throws RemoteException;
  public String getCustomerAddress1() throws RemoteException;
  public String getCustomerAddress2() throws RemoteException;
  public String getCustomerCity() throws RemoteException;
  public String getCustomerPostalCode() throws RemoteException;

  /* Mutators */
  public void setCustomerId(Integer inCustomerId) throws RemoteException;
  public void setCustomerFirstName(String inCustomerFirstName) 
          throws RemoteException;
  public void setCustomerLastName(String inCustomerLastName) 
          throws RemoteException;
  public void setCustomerAddress1(String inCustomerAddress1) 
          throws RemoteException;
  public void setCustomerAddress2(String inCustomerAddress2) 
          throws RemoteException;
  public void setCustomerCity(String inCustomerCity) throws RemoteException;
  public void setCustomerPostalCode(String inCustomerPostalCode) 
          throws RemoteException;
}

⌨️ 快捷键说明

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