From 035a664e109b3c9b8bde71a618b405dc25b0d4cb Mon Sep 17 00:00:00 2001 From: "alexandre.lima" Date: Fri, 14 Jul 2017 19:08:34 +0000 Subject: [PATCH] Fixes Bug #0009192 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@71388 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/SeguroKm.java | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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; }