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

📄 productorderlocal.java

📁 噶额外噶外骨骼感广泛高热感 就 啊啊
💻 JAVA
字号:
  /*
   * @author                        : Neelesh
   * @Version                       : 1.0
   *
   * Development Environment        : Oracle9i JDeveloper
   * Name of the File               : ProductOrderLocal.java
   * Creation/Modification History  :
   *
   * Neelesh   11-Jan-2003      Created
   *
   */
  package oracle.otnsamples.vsm.entities;

  import java.util.Collection;
  import java.util.Date;

  import javax.ejb.EJBLocalObject;


  /**
   * Local interface for ProductOrder entity. The interface has getters/setters
   * for the persistent fields of the entity. Generated by Oracle9i JDeveloper
   * Tool.
   */
  public interface ProductOrderLocal extends EJBLocalObject {
    String getId(  );

    void setId( String newId );

    Date getOrderDate(  );

    void setOrderDate( Date newOrderDate );

    String getUserName(  );

    void setUserName( String newUserName );



    String getShipToAddress(  );

    void setShipToAddress( String newShipToAddress );

    String getCity(  );

    void setCity( String newCity );

    String getState(  );

    void setState( String newState );

    String getCountry(  );

    void setCountry( String newCountry );

    Integer getZip(  );

    void setZip( Integer newZip );

    String getPhone(  );

    void setPhone( String newPhone );

    Collection getOrderItems(  );

    void setOrderItems( Collection newOrderItems );
  }

⌨️ 快捷键说明

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