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

📄 purchaselocal.java

📁 一个简单的EJB实例.用DB2连接.JSP页面.很好用.供大家学习
💻 JAVA
字号:
package salesdb;
/**
 * Local interface for Enterprise Bean: Purchase
 */
public interface PurchaseLocal extends javax.ejb.EJBLocalObject {
	/**
	 * Get accessor for persistent attribute: timestmp
	 */
	public java.lang.String getTimestmp();
	/**
	 * Set accessor for persistent attribute: timestmp
	 */
	public void setTimestmp(java.lang.String newTimestmp);
	/**
	 * This method was generated for supporting the relationship role named itemfk.
	 * It will be deleted/edited when the relationship is deleted/edited.
	 */
	public salesdb.ItemLocal getItemfk();
	/**
	 * This method was generated for supporting the relationship role named itemfk.
	 * It will be deleted/edited when the relationship is deleted/edited.
	 */
	public void setItemfk(salesdb.ItemLocal anItemfk);
	/**
	 * This method was generated for supporting the relationship role named locationfk.
	 * It will be deleted/edited when the relationship is deleted/edited.
	 */
	public salesdb.LocationLocal getLocationfk();
	/**
	 * This method was generated for supporting the relationship role named locationfk.
	 * It will be deleted/edited when the relationship is deleted/edited.
	 */
	public void setLocationfk(salesdb.LocationLocal aLocationfk);
}

⌨️ 快捷键说明

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