130 lines
3.0 KiB
Java
130 lines
3.0 KiB
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
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;
|
|
|
|
/**
|
|
*
|
|
* @author Rafius
|
|
*/
|
|
@Entity
|
|
@SequenceGenerator(name = "PRICING_CLASE_SEQ", sequenceName = "PRICING_CLASE_SEQ", allocationSize = 1)
|
|
@Table(name = "PRICING_CLASE")
|
|
public class PricingClase implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
|
@Basic(optional = false)
|
|
@GeneratedValue(strategy = GenerationType.AUTO, generator = "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 Pricing pricing;
|
|
@JoinColumn(name = "CLASESERVICIO_ID", referencedColumnName = "CLASESERVICIO_ID")
|
|
@ManyToOne
|
|
private ClaseServicio claseServicio;
|
|
|
|
public PricingClase() {
|
|
}
|
|
|
|
public 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 Pricing getPricing() {
|
|
return pricing;
|
|
}
|
|
|
|
public void setPricing(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 PricingClase)) {
|
|
return false;
|
|
}
|
|
PricingClase other = (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 "entidad.test.PricingClase[pricingclaseId=" + pricingclaseId + "]";
|
|
}
|
|
}
|