bug#10778

dev:lucas

qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@80268 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2018-03-26 22:10:52 +00:00
parent c78a3a95e5
commit 1b5b7cb147
1 changed files with 10 additions and 0 deletions

View File

@ -84,6 +84,8 @@ public class Estacion implements Serializable {
private String nomeImpressoraRelatorio; private String nomeImpressoraRelatorio;
@Column(name = "NOMBIMPRESORASEGURO") @Column(name = "NOMBIMPRESORASEGURO")
private String nombImpresoraSeguro; private String nombImpresoraSeguro;
@Column(name = "NOMBIMPRESORABPE")
private String nomeImpressoraBPe;
@Column(name = "INDSTOCKCENTRAL") @Column(name = "INDSTOCKCENTRAL")
private Boolean indStockCentral; private Boolean indStockCentral;
@OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL, fetch = FetchType.EAGER) @OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL, fetch = FetchType.EAGER)
@ -373,4 +375,12 @@ public class Estacion implements Serializable {
this.indStockCentral = indStockCentral; this.indStockCentral = indStockCentral;
} }
public String getNomeImpressoraBPe() {
return nomeImpressoraBPe;
}
public void setNomeImpressoraBPe(String nomeImpressoraBPe) {
this.nomeImpressoraBPe = nomeImpressoraBPe;
}
} }