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);