Se agrega tabla STATUS_SOLICITUD_EXPRESO#AL-4549
parent
3aa7e52bd7
commit
76e2c09863
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.114.1</version>
|
||||
<version>1.114.2</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -0,0 +1,80 @@
|
|||
package com.rjconsultores.ventaboletos.entidad;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.SequenceGenerator;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Temporal;
|
||||
import javax.persistence.TemporalType;
|
||||
|
||||
import br.com.rjconsultores.auditador.annotations.AuditarClasse;
|
||||
|
||||
@Entity
|
||||
@Table(name = "STATUS_SOLICITUD_EXPRESO")
|
||||
public class StatusSolicitudExpreso {
|
||||
|
||||
@Column(name = "STATUSSOLICITUDEXPRESO_ID")
|
||||
private Integer statusSolicitudExpresoId;
|
||||
|
||||
@Column(name = "DESCSTATUSSOLICITUDEXPRESO")
|
||||
private String descStatusSolicitudExpreso;
|
||||
|
||||
@Column(name = "ACTIVO")
|
||||
private Boolean activo;
|
||||
|
||||
@Column(name = "FECMODIF")
|
||||
@Temporal(TemporalType.TIMESTAMP)
|
||||
private Date fechaHoraModif;
|
||||
|
||||
@Column(name = "USUARIO_ID")
|
||||
private Integer usuarioId;
|
||||
|
||||
public Integer getStatusSolicitudExpresoId() {
|
||||
return statusSolicitudExpresoId;
|
||||
}
|
||||
|
||||
public void setStatusSolicitudExpresoId(Integer statusSolicitudExpresoId) {
|
||||
this.statusSolicitudExpresoId = statusSolicitudExpresoId;
|
||||
}
|
||||
|
||||
public String getDescStatusSolicitudExpreso() {
|
||||
return descStatusSolicitudExpreso;
|
||||
}
|
||||
|
||||
public void setDescStatusSolicitudExpreso(String descStatusSolicitudExpreso) {
|
||||
this.descStatusSolicitudExpreso = descStatusSolicitudExpreso;
|
||||
}
|
||||
|
||||
public Boolean getActivo() {
|
||||
return activo;
|
||||
}
|
||||
|
||||
public void setActivo(Boolean activo) {
|
||||
this.activo = activo;
|
||||
}
|
||||
|
||||
public Date getFechaHoraModif() {
|
||||
return fechaHoraModif;
|
||||
}
|
||||
|
||||
public void setFechaHoraModif(Date fechaHoraModif) {
|
||||
this.fechaHoraModif = fechaHoraModif;
|
||||
}
|
||||
|
||||
public Integer getUsuarioId() {
|
||||
return usuarioId;
|
||||
}
|
||||
|
||||
public void setUsuarioId(Integer usuarioId) {
|
||||
this.usuarioId = usuarioId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "StatusSolicitudExpreso [statusSolicitudExpresoId=" + statusSolicitudExpresoId
|
||||
+ ", descStatusSolicitudExpreso=" + descStatusSolicitudExpreso + ", activo=" + activo
|
||||
+ ", fechaHoraModif=" + fechaHoraModif + ", usuarioId=" + usuarioId + "]";
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue