diff --git a/src/com/rjconsultores/ventaboletos/vo/corrida/CorridaVO.java b/src/com/rjconsultores/ventaboletos/vo/corrida/CorridaVO.java index 67f943afa..c8553d6d8 100644 --- a/src/com/rjconsultores/ventaboletos/vo/corrida/CorridaVO.java +++ b/src/com/rjconsultores/ventaboletos/vo/corrida/CorridaVO.java @@ -31,7 +31,7 @@ public class CorridaVO { private Integer tipoServicioId; private Integer rolOperativoId; private List listTramos; - private String chave; + private String chaveCorrida; public CorridaVO() { super(); @@ -234,12 +234,12 @@ public class CorridaVO { this.listTramos = listTramos; } - public String getChave() { - return chave; + public String getChaveCorrida() { + return chaveCorrida; } - public void setChave(String chave) { - this.chave = chave; + public void setChaveCorrida(String chaveCorrida) { + this.chaveCorrida = chaveCorrida; } }