136 lines
3.1 KiB
Java
136 lines
3.1 KiB
Java
package com.rjconsultores.ventaboletos.entidad;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import javax.persistence.Basic;
|
|
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.SequenceGenerator;
|
|
import javax.persistence.Table;
|
|
import javax.persistence.Temporal;
|
|
import javax.persistence.TemporalType;
|
|
|
|
|
|
@Entity
|
|
@SequenceGenerator(name = "GP_PRICING_CLASE_SEQ", sequenceName = "GP_PRICING_CLASE_SEQ", allocationSize = 1)
|
|
@Table(name = "GP_PRICING_CLASE")
|
|
public class GP_PricingClase implements Serializable, Cloneable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
|
@Basic(optional = false)
|
|
@GeneratedValue(strategy = GenerationType.AUTO, generator = "GP_PRICING_CLASE_SEQ")
|
|
@Column(name = "PRICINGCLASE_ID")
|
|
private Integer pricingclaseId;
|
|
|
|
@Column(name = "ACTIVO")
|
|
private Integer activo;
|
|
|
|
@Column(name = "FECMODIF")
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
private Date fecmodif;
|
|
|
|
@Column(name = "USUARIO_ID")
|
|
private Integer usuarioId;
|
|
|
|
@JoinColumn(name = "PRICING_ID", referencedColumnName = "PRICING_ID")
|
|
@ManyToOne
|
|
private GP_Pricing pricing;
|
|
|
|
@JoinColumn(name = "CLASESERVICIO_ID", referencedColumnName = "CLASESERVICIO_ID")
|
|
@ManyToOne
|
|
private ClaseServicio claseServicio;
|
|
|
|
public GP_PricingClase() {
|
|
}
|
|
|
|
public GP_PricingClase(Integer pricingclaseId) {
|
|
this.pricingclaseId = pricingclaseId;
|
|
}
|
|
|
|
public Integer getPricingclaseId() {
|
|
return pricingclaseId;
|
|
}
|
|
|
|
public void setPricingclaseId(Integer pricingclaseId) {
|
|
this.pricingclaseId = pricingclaseId;
|
|
}
|
|
|
|
public Integer getActivo() {
|
|
return activo;
|
|
}
|
|
|
|
public void setActivo(Integer activo) {
|
|
this.activo = activo;
|
|
}
|
|
|
|
public Date getFecmodif() {
|
|
return fecmodif;
|
|
}
|
|
|
|
public void setFecmodif(Date fecmodif) {
|
|
this.fecmodif = fecmodif;
|
|
}
|
|
|
|
public Integer getUsuarioId() {
|
|
return usuarioId;
|
|
}
|
|
|
|
public void setUsuarioId(Integer usuarioId) {
|
|
this.usuarioId = usuarioId;
|
|
}
|
|
|
|
public GP_Pricing getPricing() {
|
|
return pricing;
|
|
}
|
|
|
|
public void setPricing(GP_Pricing pricing) {
|
|
this.pricing = pricing;
|
|
}
|
|
|
|
public ClaseServicio getClaseServicio() {
|
|
return claseServicio;
|
|
}
|
|
|
|
public void setClaseServicio(ClaseServicio claseServicio) {
|
|
this.claseServicio = claseServicio;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
int hash = 0;
|
|
hash += (pricingclaseId != null ? pricingclaseId.hashCode() : 0);
|
|
return hash;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object object) {
|
|
if (!(object instanceof GP_PricingClase)) {
|
|
return false;
|
|
}
|
|
GP_PricingClase other = (GP_PricingClase) object;
|
|
if ((this.pricingclaseId == null && other.pricingclaseId != null) || (this.pricingclaseId != null && !this.pricingclaseId.equals(other.pricingclaseId))) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "[ CLASSE =" + claseServicio.toString() + "]";
|
|
}
|
|
|
|
@Override
|
|
protected Object clone() throws CloneNotSupportedException {
|
|
return super.clone();
|
|
}
|
|
|
|
}
|