Examples of GG_LBFP


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

   */
  public void deleteGG_CZYB(String ids) {
    if (ids != null && !"".equals(ids)) {
      String[] idsArr = ids.split(",");
      for (String id : idsArr) {
        this.baseDaoEntity.getHibernateDao().delete(new GG_LBFP(), new StringBuffer(" fpid = id"));
        this.baseDaoEntity.getHibernateDao().delete(new GG_CZYB(id));
       
      }
    }
  }
View Full Code Here

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

   * @author tianshaojie
   * @date 2011-8-27
   * @discription : 保存机构人员权限
   */
  public void saveJgryQx(String czyid, String czlbIds) {
    this.baseDaoEntity.getHibernateDao().delete(new GG_LBFP(), new StringBuffer(" fpid = '" + czyid + "'"));
    if (czlbIds != null && czlbIds.length() > 0) {
      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
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.