Resumo 0004878: Tela de Busca de Usuario - Adicionar novos filtros
Descrição Adicionar os filtros de Empresa e Agência nos cadastro de usuário git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@33488 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
ad3c4f625c
commit
c9e578f47d
|
@ -78,6 +78,11 @@ public class Usuario implements Serializable, Authentication, UserDetails {
|
||||||
@Fetch(FetchMode.SELECT)
|
@Fetch(FetchMode.SELECT)
|
||||||
private List<UsuarioEmpresa> usuarioEmpresaList;
|
private List<UsuarioEmpresa> usuarioEmpresaList;
|
||||||
|
|
||||||
|
@OneToMany(mappedBy = "usuario", cascade = CascadeType.ALL, fetch=FetchType.EAGER)
|
||||||
|
@Fetch(FetchMode.SELECT)
|
||||||
|
private List<UsuarioUbicacion> usuarioUbicacionList;
|
||||||
|
|
||||||
|
|
||||||
public String getClaveUsuario() {
|
public String getClaveUsuario() {
|
||||||
return claveUsuario;
|
return claveUsuario;
|
||||||
}
|
}
|
||||||
|
@ -303,4 +308,14 @@ public class Usuario implements Serializable, Authentication, UserDetails {
|
||||||
public void setIndCorteAutomatico(Boolean indCorteAutomatico) {
|
public void setIndCorteAutomatico(Boolean indCorteAutomatico) {
|
||||||
this.indCorteAutomatico = indCorteAutomatico;
|
this.indCorteAutomatico = indCorteAutomatico;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<UsuarioUbicacion> getUsuarioUbicacionList() {
|
||||||
|
return usuarioUbicacionList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUsuarioUbicacionList(List<UsuarioUbicacion> usuarioUbicacionList) {
|
||||||
|
this.usuarioUbicacionList = usuarioUbicacionList;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue