wilian 2015-12-03 19:01:55 +00:00
parent 45845caf07
commit 03406127af
1 changed files with 10 additions and 0 deletions

View File

@ -77,6 +77,8 @@ public class ConfRestricaoCanalVenta implements Serializable {
private List<ConfRestricaoExcecao> lsConfRestricaoExcecao;
@OneToMany(mappedBy = "confRestricaoCanalVenta", cascade = CascadeType.ALL, fetch = FetchType.LAZY)
private List<ConfRestricaoPtovta> lsConfRestricaoPtovta;
@Column(name = "INDEXIBECONSULTAVENDAWEB")
private Boolean indexibeconsultavendaweb;
public Integer getConfRestricaoCanalVentaId() {
return confRestricaoCanalVentaId;
@ -296,4 +298,12 @@ public class ConfRestricaoCanalVenta implements Serializable {
return false;
return true;
}
public Boolean getIndexibeconsultavendaweb() {
return indexibeconsultavendaweb;
}
public void setIndexibeconsultavendaweb(Boolean indexibeconsultavendaweb) {
this.indexibeconsultavendaweb = indexibeconsultavendaweb;
}
}