fixes bug#21169
dev:valdir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@105320 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
e24e53cbdc
commit
6b9025d2d4
|
@ -114,6 +114,9 @@ public class Pricing implements Serializable {
|
||||||
@Column(name = "INDOCUPACAOPORTRECHO")
|
@Column(name = "INDOCUPACAOPORTRECHO")
|
||||||
private Boolean indOcupacaoPorTrecho;
|
private Boolean indOcupacaoPorTrecho;
|
||||||
|
|
||||||
|
@Column(name = "INDSOMENTEASSENTOSUGERIDO")
|
||||||
|
private Boolean indSomenteAssentoSugerido;
|
||||||
|
|
||||||
public enum GerarFeriado {
|
public enum GerarFeriado {
|
||||||
// Declaração dos enum
|
// Declaração dos enum
|
||||||
GERARSEMPRE("GERAR SEMPRE", "S"),
|
GERARSEMPRE("GERAR SEMPRE", "S"),
|
||||||
|
@ -538,6 +541,12 @@ public class Pricing implements Serializable {
|
||||||
this.indOcupacaoPorTrecho = indOcupacaoPorTrecho;
|
this.indOcupacaoPorTrecho = indOcupacaoPorTrecho;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndSomenteAssentoSugerido() {
|
||||||
|
return BooleanUtils.toBoolean(indSomenteAssentoSugerido);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndSomenteAssentoSugerido(Boolean indSomenteAssentoSugerido) {
|
||||||
|
this.indSomenteAssentoSugerido = indSomenteAssentoSugerido;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue