diff --git a/src/com/rjconsultores/ventaboletos/entidad/SeguroKm.java b/src/com/rjconsultores/ventaboletos/entidad/SeguroKm.java index bfb6ab565..3972aeed0 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/SeguroKm.java +++ b/src/com/rjconsultores/ventaboletos/entidad/SeguroKm.java @@ -50,11 +50,21 @@ public class SeguroKm implements Serializable { private Date fecmodif; @Column(name = "USUARIO_ID") private Integer usuarioId; - + @Column(name = "TIPO_SEGURO") + private String tipoSeguro; + public SeguroKm() { } - public SeguroKm(Integer segurokmId) { + public String getTipoSeguro() { + return tipoSeguro; + } + + public void setTipoSeguro(String tipoSeguro) { + this.tipoSeguro = tipoSeguro; + } + + public SeguroKm(Integer segurokmId) { this.segurokmId = segurokmId; }