Examples of GG_XTGN


Examples of edu.zzuli.model.orm.po.GG_XTGN

  public void deleteGG_XTGN(String ids) {
    if (ids != null && !"".equals(ids)) {
      String[] idsArr = ids.split(",");
      for (String id : idsArr) {
        this.baseDaoEntity.getHibernateDao().delete(new GG_LBGN(),new StringBuffer(" gnid = '" + id + "'"));
        this.baseDaoEntity.getHibernateDao().delete(new GG_XTGN(id));
      }
    }
  }
View Full Code Here

Examples of edu.zzuli.model.orm.po.GG_XTGN

    String[] xtgnArr = xtgns.split(",");
    List gg_lbgnList = new ArrayList();
    for (String xtgn : xtgnArr) {
      GG_LBGN gg_lbgn = new GG_LBGN();
      gg_lbgn.setGG_CZLB(new GG_CZLB(czlbId));
      gg_lbgn.setGG_XTGN(new GG_XTGN(xtgn));
      gg_lbgnList.add(gg_lbgn);
    }
    if (gg_lbgnList.size() > 0) {
      this.baseDaoEntity.getHibernateDao().save(gg_lbgnList);
    }
View Full Code Here

Examples of edu.zzuli.model.orm.po.GG_XTGN

      String[] xtgnArr = xtgns.split(",");
      List gg_lbgnList = new ArrayList();
      for (String xtgn : xtgnArr) {
        GG_LBGN gg_lbgn = new GG_LBGN();
        gg_lbgn.setGG_CZLB(new GG_CZLB(czlbId));
        gg_lbgn.setGG_XTGN(new GG_XTGN(xtgn));
        gg_lbgnList.add(gg_lbgn);
      }
      if (gg_lbgnList.size() > 0) {
        this.baseDaoEntity.getHibernateDao().save(gg_lbgnList);
      }
View Full Code Here

Examples of edu.zzuli.model.orm.po.GG_XTGN

    String[] xtgnArr = xtgns.split(",");
    List gg_lbgnList = new ArrayList();
    for (String xtgn : xtgnArr) {
      GG_LBGN gg_lbgn = new GG_LBGN();
      gg_lbgn.setGG_CZLB(new GG_CZLB(czlbId));
      gg_lbgn.setGG_XTGN(new GG_XTGN(xtgn));
      gg_lbgnList.add(gg_lbgn);
    }
    if (gg_lbgnList.size() > 0) {
      this.baseDaoEntity.getHibernateDao().save(gg_lbgnList);
    }
View Full Code Here

Examples of edu.zzuli.model.orm.po.GG_XTGN

  }
 
  public String addOrModPage() {
    String id = ServletActionContext.getRequest().getParameter("id");
    if (id != null && !"".equals(id)) {
      gg_xtgn = (GG_XTGN) xtgnglService.selectSinglePO(new GG_XTGN(id));
      ServletActionContext.getRequest().setAttribute("gg_xtgn", gg_xtgn);
    } else {
//      String fid = ServletActionContext.getRequest().getParameter("fid");
      gg_xtgn = new GG_XTGN();
      gg_xtgn.setFid(ServletActionContext.getRequest().getParameter("fid"));
      ServletActionContext.getRequest().setAttribute("gg_xtgn", gg_xtgn);
    }
    return "success";
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.