fixes bug #9295
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@70923 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
d2750eb2c7
commit
d69edb18c0
|
@ -40,6 +40,9 @@ public class PtovtaCatInd implements Serializable {
|
|||
@JoinColumn(name = "PUNTOVENTA_ID", referencedColumnName = "PUNTOVENTA_ID")
|
||||
@ManyToOne
|
||||
private PuntoVenta puntoVenta;
|
||||
@JoinColumn(name = "USUARIOBLOQUEADO_ID", referencedColumnName = "USUARIO_ID")
|
||||
@ManyToOne
|
||||
private Usuario usuarioBloqueado;
|
||||
|
||||
public Integer getPtovtaCategoriaId() {
|
||||
return ptovtaCategoriaId;
|
||||
|
@ -89,6 +92,16 @@ public class PtovtaCatInd implements Serializable {
|
|||
this.puntoVenta = puntoVenta;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public Usuario getUsuarioBloqueado() {
|
||||
return usuarioBloqueado;
|
||||
}
|
||||
|
||||
public void setUsuarioBloqueado(Usuario usuarioBloqueado) {
|
||||
this.usuarioBloqueado = usuarioBloqueado;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
|
|
Loading…
Reference in New Issue