Package ecar.pojo

Examples of ecar.pojo.OrgaoPeriodoExercicioOrgPerExePK


    }
     
      OrgaoDao orgaoDao = new OrgaoDao(request);
      List<OrgaoOrg> orgaos = orgaoDao.listar(OrgaoOrg.class, null);
      for(OrgaoOrg orgao : orgaos){
      OrgaoPeriodoExercicioOrgPerExePK compId = new OrgaoPeriodoExercicioOrgPerExePK();
      compId.setCodPerExe(perExe.getCodPerExe());
      compId.setCodOrg(orgao.getCodOrg());
     
      OrgaoPeriodoExercicioOrgPerExe orgPerExe = new OrgaoPeriodoExercicioOrgPerExe();
      orgPerExe.setCompId(compId);
      orgPerExe.setIndAtivoOrgPerExe("S");
      orgPerExe.setOrgaoOrg(orgao);
      orgPerExe.setPeriodoExercicioPerExe(perExe);
     
      dao.salvar(orgPerExe);
    }
     
      UnidadeOrcamentariaDao uoDao = new UnidadeOrcamentariaDao(request);
      List<UnidadeOrcamentariaUO> uos = uoDao.listar(UnidadeOrcamentariaUO.class, null);
      for(UnidadeOrcamentariaUO unidade : uos){
        UnidadeOrcamentariaPeriodoExercicioUoPerExePK compId = new UnidadeOrcamentariaPeriodoExercicioUoPerExePK();
        compId.setCodPerExe(perExe.getCodPerExe());
        compId.setCodUo(unidade.getCodUo());
       
        UnidadeOrcamentariaPeriodoExercicioUoPerExe uoPerExe = new UnidadeOrcamentariaPeriodoExercicioUoPerExe();
        uoPerExe.setCompId(compId);
        uoPerExe.setIndAtivoUoPerExe("S");
        uoPerExe.setPeriodoExercicioPerExe(perExe);
View Full Code Here

TOP

Related Classes of ecar.pojo.OrgaoPeriodoExercicioOrgPerExePK

Copyright © 2018 www.massapicom. 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.