huserbasicinfoentbean.java~19~

来自「这也是师兄的毕业设计,具体的功能我也不清楚,因为我才大一,请见谅!!!!!!!不」· JAVA~19~ 代码 · 共 61 行

JAVA~19~
61
字号
package clientejb;import javax.ejb.*;abstract public class hUserBasicInfoEntBean implements EntityBean {  EntityContext entityContext;  public hUserBasicInfoEntPK ejbCreate(String h_user_id, String h_user_name, String h_user_id_card, String h_user_hos_id, String h_user_hos_dep, String h_user_phone, String h_user_email, java.lang.String h_user_image, String h_user_remark) throws CreateException {    setH_user_id(h_user_id);    setH_user_name(h_user_name);    setH_user_id_card(h_user_id_card);    setH_user_hos_id(h_user_hos_id);    setH_user_hos_dep(h_user_hos_dep);    setH_user_phone(h_user_phone);    setH_user_email(h_user_email);    setH_user_image(h_user_image);    setH_user_remark(h_user_remark);    return null;  }  public void ejbPostCreate(String h_user_id, String h_user_name, String h_user_id_card, String h_user_hos_id, String h_user_hos_dep, String h_user_phone, String h_user_email, java.lang.String h_user_image, String h_user_remark) throws CreateException {    /**@todo Complete this method*/  }  public void ejbRemove() throws RemoveException {    /**@todo Complete this method*/  }  public abstract void setH_user_id(String h_user_id);  public abstract void setH_user_name(String h_user_name);  public abstract void setH_user_id_card(String h_user_id_card);  public abstract void setH_user_hos_id(String h_user_hos_id);  public abstract void setH_user_hos_dep(String h_user_hos_dep);  public abstract void setH_user_phone(String h_user_phone);  public abstract void setH_user_email(String h_user_email);  public abstract void setH_user_image(java.lang.String h_user_image);  public abstract void setH_user_remark(String h_user_remark);  public abstract String getH_user_id();  public abstract String getH_user_name();  public abstract String getH_user_id_card();  public abstract String getH_user_hos_id();  public abstract String getH_user_hos_dep();  public abstract String getH_user_phone();  public abstract String getH_user_email();  public abstract java.lang.String getH_user_image();  public abstract String getH_user_remark();  public void ejbLoad() {    /**@todo Complete this method*/  }  public void ejbStore() {    /**@todo Complete this method*/  }  public void ejbActivate() {    /**@todo Complete this method*/  }  public void ejbPassivate() {    /**@todo Complete this method*/  }  public void unsetEntityContext() {    this.entityContext = null;  }  public void setEntityContext(EntityContext entityContext) {    this.entityContext = entityContext;  }}

⌨️ 快捷键说明

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