Information

0
Story Points

Technologies

Decompiled Java File
package br.com.impacta.buscadorPotenciaisClientes.orcamento.entity;

import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;

@Entity
@Table(
   name = "ACVMINTHST"
)
public final class HistoricoIntegracao {
   @Id
   @Column(
      name = "INTHSTSEQNUM"
   )
   @SequenceGenerator(
      name = "ACVMINTHST_SEQ",
      sequenceName = "ACVMINTHST_SEQ",
      allocationSize = 1
   )
   @GeneratedValue(
      strategy = GenerationType.SEQUENCE,
      generator = "ACVMINTHST_SEQ"
   )
   private Long identificador;
   @Column(
      name = "SUSCOD"
   )
   private String susep;
   @Column(
      name = "CVNPIRCOD"
   )
   private Integer codigoCliente;
   @Column(
      name = "CLDORCNUM"
   )
   private Long numeroOrcamento;
   @Column(
      name = "PRPDIG"
   )
   private Integer numeroOrigem;
   @Column(
      name = "DCTTIPCOD"
   )
   private Integer tipoDocumento;
   @Column(
      name = "INTSRVCOD"
   )
   private Integer codigoIntegracao;
   @Column(
      name = "INIHORDAT"
   )
   private Date dataHoraInicio;
   @Column(
      name = "INTDURTMPQTD"
   )
   private Integer tempo;
   @Column(
      name = "INTSTTFLG"
   )
   private Integer status;
   @Column(
      name = "MSGTXT"
   )
   private String mensagem;

   public Long getIdentificador() {
      return this.identificador;
   }

   public void setIdentificador(Long identificador) {
      this.identificador = identificador;
   }

   public String getSusep() {
      return this.susep;
   }

   public void setSusep(String susep) {
      this.susep = susep;
   }

   public Integer getCodigoCliente() {
      return this.codigoCliente;
   }

   public void setCodigoCliente(Integer codigoCliente) {
      this.codigoCliente = codigoCliente;
   }

   public Long getNumeroOrcamento() {
      return this.numeroOrcamento;
   }

   public void setNumeroOrcamento(Long numeroOrcamento) {
      this.numeroOrcamento = numeroOrcamento;
   }

   public Integer getNumeroOrigem() {
      return this.numeroOrigem;
   }

   public void setNumeroOrigem(Integer numeroOrigem) {
      this.numeroOrigem = numeroOrigem;
   }

   public Integer getTipoDocumento() {
      return this.tipoDocumento;
   }

   public void setTipoDocumento(Integer tipoDocumento) {
      this.tipoDocumento = tipoDocumento;
   }

   public Integer getCodigoIntegracao() {
      return this.codigoIntegracao;
   }

   public void setCodigoIntegracao(Integer codigoIntegracao) {
      this.codigoIntegracao = codigoIntegracao;
   }

   public Date getDataHoraInicio() {
      return this.dataHoraInicio;
   }

   public void setDataHoraInicio(Date dataHoraInicio) {
      this.dataHoraInicio = dataHoraInicio;
   }

   public Integer getTempo() {
      return this.tempo;
   }

   public void setTempo(Integer tempo) {
      this.tempo = tempo;
   }

   public Integer getStatus() {
      return this.status;
   }

   public void setStatus(Integer status) {
      this.status = status;
   }

   public String getMensagem() {
      return this.mensagem;
   }

   public void setMensagem(String mensagem) {
      this.mensagem = mensagem;
   }

   public String toString() {
      return "HistoricoIntegracao [identificador=" + this.identificador + ", susep=" + this.susep + ", codigoCliente=" + this.codigoCliente + ", tipoDocumento=" + this.tipoDocumento + ", codigoIntegracao=" + this.codigoIntegracao + ", dataHoraInicio=" + this.dataHoraInicio + ", tempo=" + this.tempo + ", status=" + this.status + ", mensagem=" + this.mensagem + "]";
   }
}
Page generated: Oct 19, 2017 2:35:17 PM