br.com.utfpr.porta.modelo.Estabelecimento Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tcc-porta-servico Show documentation
Show all versions of tcc-porta-servico Show documentation
Projeto serviço que realiza acesso ao banco de dados para o projeto API e web
The newest version!
package br.com.utfpr.porta.modelo;
import java.io.Serializable;
import java.time.LocalDateTime;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.PrePersist;
import javax.persistence.PreUpdate;
import javax.persistence.Table;
import javax.persistence.Transient;
import javax.validation.Valid;
import org.hibernate.validator.constraints.NotBlank;
@Entity
@Table(name = "estabelecimento")
public class Estabelecimento implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long codigo;
@NotBlank(message = "Nome é obrigatório")
private String nome;
@ManyToOne
@JoinColumn(name = "codigo_endereco")
@Valid
private Endereco endereco;
@ManyToOne
@JoinColumn(name = "codigo_responsavel")
@Valid
private Usuario responsavel;
private Boolean ativo;
@Column(name = "data_hora_criacao", updatable=false)
private LocalDateTime dataHoraCriacao;
@Column(name = "data_hora_alteracao")
private LocalDateTime dataHoraAlteracao;
@Transient
private Long quantidadePortas;
@Transient
private Long quantidadeAnuncios;
@PrePersist
private void prePersist() {
this.dataHoraCriacao = LocalDateTime.now();
this.dataHoraAlteracao = LocalDateTime.now();
}
@PreUpdate
private void preUpdate() {
this.dataHoraAlteracao = LocalDateTime.now();
}
public Estabelecimento() {}
public Estabelecimento(Long codigo) {
this.codigo = codigo;
}
public boolean isNovo() {
return codigo == null;
}
public String getCodigoNome() {
return codigo.toString() + " - " + nome;
}
public Long getCodigo() {
return codigo;
}
public void setCodigo(Long codigo) {
this.codigo = codigo;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public Endereco getEndereco() {
return endereco;
}
public void setEndereco(Endereco endereco) {
this.endereco = endereco;
}
public Usuario getResponsavel() {
return responsavel;
}
public void setResponsavel(Usuario responsavel) {
this.responsavel = responsavel;
}
public Boolean getAtivo() {
return ativo;
}
public void setAtivo(Boolean ativo) {
this.ativo = ativo;
}
public Long getQuantidadePortas() {
return quantidadePortas;
}
public void setQuantidadePortas(Long quantidadePortas) {
this.quantidadePortas = quantidadePortas;
}
public Long getQuantidadeAnuncios() {
return quantidadeAnuncios;
}
public void setQuantidadeAnuncios(Long quantidadeAnuncios) {
this.quantidadeAnuncios = quantidadeAnuncios;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((codigo == null) ? 0 : codigo.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Estabelecimento other = (Estabelecimento) obj;
if (codigo == null) {
if (other.codigo != null)
return false;
} else if (!codigo.equals(other.codigo))
return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy