lucas.calixto 2017-05-04 13:34:32 +00:00
parent 970f740fe5
commit 5be86200dc
1 changed files with 1 additions and 13 deletions

View File

@ -314,9 +314,6 @@ public class Boleto implements java.io.Serializable {
@Column(name = "ESTADOCIVIL_ID", precision = 2, scale = 0) @Column(name = "ESTADOCIVIL_ID", precision = 2, scale = 0)
private Byte estadocivilId; private Byte estadocivilId;
@Column(name = "COO", length = 6)
private String coo;
public Boleto() { public Boleto() {
} }
@ -345,7 +342,7 @@ public class Boleto implements java.io.Serializable {
String desctelefono, String numasientovinculado, String desctipodoc2, String descnumdoc2, String desctelefono, String numasientovinculado, String desctipodoc2, String descnumdoc2,
Date fecnacimiento, Boolean indsegundaviaimpressa, String dispositivoembarcada, Long numerobilheteembarcada, Date fecnacimiento, Boolean indsegundaviaimpressa, String dispositivoembarcada, Long numerobilheteembarcada,
Integer ptovtaventaId, String ccf, Long rmdId, String serieimpfiscaloriginal, Long boletoanteriorId, Integer ptovtaventaId, String ccf, Long rmdId, String serieimpfiscaloriginal, Long boletoanteriorId,
Long aidfId, String nacionalidad, String sexo, Byte estadocivilId, String coo) { Long aidfId, String nacionalidad, String sexo, Byte estadocivilId) {
this.boletoId = boletoId; this.boletoId = boletoId;
this.numasiento = numasiento; this.numasiento = numasiento;
this.categoriaId = categoriaId; this.categoriaId = categoriaId;
@ -442,7 +439,6 @@ public class Boleto implements java.io.Serializable {
this.nacionalidad = nacionalidad; this.nacionalidad = nacionalidad;
this.sexo = sexo; this.sexo = sexo;
this.estadocivilId = estadocivilId; this.estadocivilId = estadocivilId;
this.coo = coo;
} }
public long getBoletoId() { public long getBoletoId() {
@ -1213,12 +1209,4 @@ public class Boleto implements java.io.Serializable {
this.estadocivilId = estadocivilId; this.estadocivilId = estadocivilId;
} }
public String getCoo() {
return this.coo;
}
public void setCoo(String coo) {
this.coo = coo;
}
} }