fixes bug#21857
dev:wallace qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@106783 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
1738b669be
commit
b82c51a911
|
@ -74,6 +74,9 @@ public class ClaseServicio implements Serializable, Auditavel<ClaseServicio> {
|
|||
private List<Corrida> corridaList;
|
||||
@Column(name = "COEFICIENTETARIFA")
|
||||
private BigDecimal coeficiente;
|
||||
|
||||
@Column(name = "INDNAOVENDESEGUROOPCIONAL")
|
||||
private Boolean indNaoVendeSeguroOpcional;
|
||||
|
||||
@Transient
|
||||
@NaoAuditar
|
||||
|
@ -260,4 +263,12 @@ public class ClaseServicio implements Serializable, Auditavel<ClaseServicio> {
|
|||
return String.format("ClaseServicioID [%s]", getClaseservicioId());
|
||||
}
|
||||
|
||||
public Boolean getIndNaoVendeSeguroOpcional() {
|
||||
return indNaoVendeSeguroOpcional != null ? indNaoVendeSeguroOpcional : false;
|
||||
}
|
||||
|
||||
public void setIndNaoVendeSeguroOpcional(Boolean indNaoVendeSeguroOpcional) {
|
||||
this.indNaoVendeSeguroOpcional = indNaoVendeSeguroOpcional;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue