
br.com.progolden.dneutils.model.FaixaCaixaPostalUOP Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dne-utils Show documentation
Show all versions of dne-utils Show documentation
Biblioteca de utilitários para trabalhar com a base e-DNE dos Correios.
The newest version!
/*
Copyright 2014 ProGolden Soluções Tecnológicas
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package br.com.progolden.dneutils.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import br.com.progolden.dneutils.abstractions.EntityIF;
@Entity(name="dne_faixa_uop")
@Table(name="dne_faixa_uop")
public class FaixaCaixaPostalUOP implements EntityIF {
private static final long serialVersionUID = 1L;
@Id
@JoinColumn(name="uop_nu")
@ManyToOne(targetEntity=UnidadeOperacional.class, fetch=FetchType.EAGER, optional=false)
private UnidadeOperacional unidadeOperacional;
@Id
@Column(name="fnc_inicial", nullable=false)
private Long numeroInicial;
@Column(name="fnc_final", nullable=false)
private Long numeroFinal;
public FaixaCaixaPostalUOP() {}
public UnidadeOperacional getUnidadeOperacional() {
return unidadeOperacional;
}
public void setUnidadeOperacional(UnidadeOperacional unidadeOperacional) {
this.unidadeOperacional = unidadeOperacional;
}
public Long getNumeroInicial() {
return numeroInicial;
}
public void setNumeroInicial(Long numeroInicial) {
this.numeroInicial = numeroInicial;
}
public Long getNumeroFinal() {
return numeroFinal;
}
public void setNumeroFinal(Long numeroFinal) {
this.numeroFinal = numeroFinal;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((numeroInicial == null) ? 0 : numeroInicial.hashCode());
result = prime
* result
+ ((unidadeOperacional == null) ? 0 : unidadeOperacional
.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;
FaixaCaixaPostalUOP other = (FaixaCaixaPostalUOP) obj;
if (numeroInicial == null) {
if (other.numeroInicial != null)
return false;
} else if (!numeroInicial.equals(other.numeroInicial))
return false;
if (unidadeOperacional == null) {
if (other.unidadeOperacional != null)
return false;
} else if (!unidadeOperacional.equals(other.unidadeOperacional))
return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy