Examples of GG_CZLB


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

      String[] czlbIdsArr = czlbIds.split(",");
      List gg_lbfpList = new ArrayList();
      for(String lbid : czlbIdsArr) {
        GG_LBFP gg_lbfp = new GG_LBFP();
        gg_lbfp.setFpid(czyid);
        gg_lbfp.setGG_CZLB(new GG_CZLB(lbid));
        gg_lbfpList.add(gg_lbfp);
      }
      this.baseDaoEntity.getHibernateDao().save(gg_lbfpList);
    }
  }
View Full Code Here

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

    this.baseDaoEntity.getHibernateDao().delete(new GG_LBGN(), new StringBuffer(" LBID = '" + czlbId + "'"));
    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_CZLB

    if (ids != null && !"".equals(ids)) {
      String[] idsArr = ids.split(",");
      for (String lbid : idsArr) {
        if (lbid.length() == 32) {
          this.baseDaoEntity.getHibernateDao().delete(new GG_LBGN(),new StringBuffer(" lbid = '" + lbid + "'"));
          this.baseDaoEntity.getHibernateDao().delete(new GG_CZLB(lbid));
        }
      }
    }
  }
View Full Code Here

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

    if (xtgns != null && xtgns.length() > 0) {
      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_CZLB

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

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

    this.baseDaoEntity.getHibernateDao().delete(new GG_LBGN(), new StringBuffer(" LBID = '" + czlbId + "'"));
    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_CZLB

  }
 
  public String addOrModPage() {
    String lbid = ServletActionContext.getRequest().getParameter("id");
    if (lbid != null && !"".equals(lbid)) {
      gg_czlb = (GG_CZLB) gnsqService.selectSinglePO(new GG_CZLB(lbid));
      ServletActionContext.getRequest().setAttribute("gg_czlb", gg_czlb);
    } else {
      ServletActionContext.getRequest().setAttribute("gg_czlb", new GG_CZLB());
    }
   
    return "success";
  }
View Full Code Here

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

  }
 
  public String addOrModPage() {
    String lbid = ServletActionContext.getRequest().getParameter("id");
    if (lbid != null && !"".equals(lbid)) {
      gg_czlb = (GG_CZLB) gnsqService.selectSinglePO(new GG_CZLB(lbid));
      ServletActionContext.getRequest().setAttribute("gg_czlb", gg_czlb);
    } else {
      ServletActionContext.getRequest().setAttribute("gg_czlb", new GG_CZLB());
    }
   
    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.