private Stib_Item_A_InspecionarED populaRegistro(ResultSet res) throws SQLException {
   Stib_Item_A_InspecionarED ed = new Stib_Item_A_InspecionarED();
   ed.setOid_Item_A_Inspecionar(res.getInt("oid_Item_A_Inspecionar"));
   ed.setCd_Item_A_Inspecionar(res.getString("cd_Item_A_Inspecionar"));
   ed.setNm_Item_A_Inspecionar(res.getString("nm_Item_A_Inspecionar"));
   ed.setNm_Item_A_Inspecionar_E(res.getString("nm_Item_A_Inspecionar_E"));
   ed.setNr_Ordem(res.getInt("nr_Ordem"));
   ed.setDm_Tipo(res.getString("dm_Tipo"));
   ed.setUsuario_Stamp(res.getString("usu_Stmp"));
   ed.setMsg_Stamp(
       ("I".equals(res.getString("dm_Stmp")) ? "Incluído" : "Alterado")
           + " por "
           + res.getString("usu_Stmp")
           + " em "
           + FormataData.formataDataBT(res.getString("dt_Stmp")));
   return ed;
 }
 private Stib_ParametroED populaRegistro(ResultSet res) throws SQLException {
   Stib_ParametroED ed = new Stib_ParametroED();
   ed.setNr_Percentual_Faixa1_De(res.getInt("nr_Percentual_Faixa1_De"));
   ed.setNr_Percentual_Faixa1_Ate(res.getInt("nr_Percentual_Faixa1_Ate"));
   ed.setNr_Percentual_Faixa2_De(res.getInt("nr_Percentual_Faixa2_De"));
   ed.setNr_Percentual_Faixa2_Ate(res.getInt("nr_Percentual_Faixa2_Ate"));
   ed.setNr_Percentual_Faixa3_De(res.getInt("nr_Percentual_Faixa3_De"));
   ed.setNr_Percentual_Faixa3_Ate(res.getInt("nr_Percentual_Faixa3_Ate"));
   ed.setNm_Parametro(res.getString("nm_Parametro"));
   ed.setUsuario_Stamp(res.getString("usu_Stmp"));
   ed.setMsg_Stamp(
       ("I".equals(res.getString("dm_Stmp")) ? "Incluído" : "Alterado")
           + " por "
           + res.getString("usu_Stmp")
           + " em "
           + FormataData.formataDataBT(res.getString("dt_Stmp")));
   return ed;
 }
 private Stas_Motivo_SucataED populaRegistro(ResultSet res) throws SQLException {
   Stas_Motivo_SucataED ed = new Stas_Motivo_SucataED();
   ed.setOid_Motivo_Sucata(res.getInt("oid_Motivo_Sucata"));
   ed.setCd_Motivo_Sucata(res.getString("cd_Motivo_Sucata"));
   ed.setNm_Motivo_Sucata(res.getString("nm_Motivo_Sucata"));
   ed.setTx_Motivo_Sucata(res.getString("tx_Motivo_Sucata"));
   ed.setTx_Recomendacao(res.getString("tx_Recomendacao"));
   ed.setNm_Motivo_Sucata_E(res.getString("nm_Motivo_Sucata_E"));
   ed.setTx_Motivo_Sucata_E(res.getString("tx_Motivo_Sucata_E"));
   ed.setTx_Recomendacao_E(res.getString("tx_Recomendacao_E"));
   ed.setUsuario_Stamp(res.getString("usu_Stmp"));
   ed.setMsg_Stamp(
       ("I".equals(res.getString("dm_Stmp")) ? "Incluído" : "Alterado")
           + " por "
           + res.getString("usu_Stmp")
           + " em "
           + FormataData.formataDataBT(res.getString("dt_Stmp")));
   return ed;
 }