src/Entity/Sb/DotpayHistory.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Sb;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * DotpayHistory
  6.  *
  7.  * @ORM\Table(name="dotpay_history", indexes={@ORM\Index(name="ORD_TRAN", columns={"ORD_TRAN"})})
  8.  * @ORM\Entity
  9.  */
  10. class DotpayHistory
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="ID_HIS", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $idHis;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="ORD_TRAN", type="string", length=20, nullable=false)
  24.      */
  25.     private $ordTran;
  26.     /**
  27.      * @var boolean
  28.      *
  29.      * @ORM\Column(name="HIS_STATUS", type="integer", nullable=false)
  30.      */
  31.     private $hisStatus;
  32.     /**
  33.      * @var \DateTime
  34.      *
  35.      * @ORM\Column(name="HIS_DATE", type="datetime", nullable=false)
  36.      */
  37.     private $hisDate;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="DOTPAY_ID", type="string", length=50, nullable=false)
  42.      */
  43.     private $dotpayId;
  44.     /**
  45.      * Get idHis
  46.      *
  47.      * @return integer
  48.      */
  49.     public function getIdHis()
  50.     {
  51.         return $this->idHis;
  52.     }
  53.     /**
  54.      * Set ordTran
  55.      *
  56.      * @param string $ordTran
  57.      *
  58.      * @return DotpayHistory
  59.      */
  60.     public function setOrdTran($ordTran)
  61.     {
  62.         $this->ordTran $ordTran;
  63.         return $this;
  64.     }
  65.     /**
  66.      * Get ordTran
  67.      *
  68.      * @return string
  69.      */
  70.     public function getOrdTran()
  71.     {
  72.         return $this->ordTran;
  73.     }
  74.     /**
  75.      * Set hisStatus
  76.      *
  77.      * @param integer $hisStatus
  78.      *
  79.      * @return DotpayHistory
  80.      */
  81.     public function setHisStatus($hisStatus)
  82.     {
  83.         $this->hisStatus $hisStatus;
  84.         return $this;
  85.     }
  86.     /**
  87.      * Get hisStatus
  88.      *
  89.      * @return integer
  90.      */
  91.     public function getHisStatus()
  92.     {
  93.         return $this->hisStatus;
  94.     }
  95.     /**
  96.      * Set hisDate
  97.      *
  98.      * @param \DateTime $hisDate
  99.      *
  100.      * @return DotpayHistory
  101.      */
  102.     public function setHisDate($hisDate)
  103.     {
  104.         $this->hisDate $hisDate;
  105.         return $this;
  106.     }
  107.     /**
  108.      * Get hisDate
  109.      *
  110.      * @return \DateTime
  111.      */
  112.     public function getHisDate()
  113.     {
  114.         return $this->hisDate;
  115.     }
  116.     /**
  117.      * Set dotpayId
  118.      *
  119.      * @param string $dotpayId
  120.      *
  121.      * @return DotpayHistory
  122.      */
  123.     public function setDotpayId($dotpayId)
  124.     {
  125.         $this->dotpayId $dotpayId;
  126.         return $this;
  127.     }
  128.     /**
  129.      * Get dotpayId
  130.      *
  131.      * @return string
  132.      */
  133.     public function getDotpayId()
  134.     {
  135.         return $this->dotpayId;
  136.     }
  137. }