[bug#5250]
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@35191 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
f8168c1925
commit
386d5c4574
|
@ -76,6 +76,8 @@ public class Estacion implements Serializable {
|
||||||
private String nomeArquivoLayout;
|
private String nomeArquivoLayout;
|
||||||
@Column(name = "NOMEIMPRESSORARELATORIO")
|
@Column(name = "NOMEIMPRESSORARELATORIO")
|
||||||
private String nomeImpressoraRelatorio;
|
private String nomeImpressoraRelatorio;
|
||||||
|
@Column(name = "NOMBIMPRESORASEGURO")
|
||||||
|
private String nombImpresoraSeguro;
|
||||||
@OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL, fetch = FetchType.EAGER)
|
@OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL, fetch = FetchType.EAGER)
|
||||||
private List<EstacionSitef> estacionSitefList;
|
private List<EstacionSitef> estacionSitefList;
|
||||||
@OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL)
|
@OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL)
|
||||||
|
@ -275,6 +277,14 @@ public class Estacion implements Serializable {
|
||||||
this.folioPreimpresoList = folioPreimpresoList;
|
this.folioPreimpresoList = folioPreimpresoList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getNombImpresoraSeguro() {
|
||||||
|
return nombImpresoraSeguro;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNombImpresoraSeguro(String nombImpresoraSeguro) {
|
||||||
|
this.nombImpresoraSeguro = nombImpresoraSeguro;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
int hash = 0;
|
int hash = 0;
|
||||||
|
|
Loading…
Reference in New Issue