fixed bug#13109
qua:Marcelo dev:Thiago git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@89133 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
13ab4bdfcc
commit
30216839c8
|
@ -46,6 +46,10 @@ public class PtovtaCatInd implements Serializable {
|
|||
@JoinColumn(name = "EMPRESA_ID", referencedColumnName = "EMPRESA_ID")
|
||||
@ManyToOne
|
||||
private Empresa empresa;
|
||||
@Column(name = "INDTOTALBUS")
|
||||
private Boolean indTotalBus;
|
||||
@Column(name = "INDEMBARCADA")
|
||||
private Boolean indEmbarcada;
|
||||
|
||||
public Integer getPtovtaCategoriaId() {
|
||||
return ptovtaCategoriaId;
|
||||
|
@ -113,6 +117,22 @@ public class PtovtaCatInd implements Serializable {
|
|||
public void setEmpresa(Empresa empresa) {
|
||||
this.empresa = empresa;
|
||||
}
|
||||
|
||||
public Boolean getIndTotalBus() {
|
||||
return indTotalBus;
|
||||
}
|
||||
|
||||
public void setIndTotalBus(Boolean indTotalBus) {
|
||||
this.indTotalBus = indTotalBus;
|
||||
}
|
||||
|
||||
public Boolean getIndEmbarcada() {
|
||||
return indEmbarcada;
|
||||
}
|
||||
|
||||
public void setIndEmbarcada(Boolean indEmbarcada) {
|
||||
this.indEmbarcada = indEmbarcada;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
|
|
Loading…
Reference in New Issue