<?php
namespace App\Entity\Sb;
use Doctrine\ORM\Mapping as ORM;
/**
* DotpayHistory
*
* @ORM\Table(name="dotpay_history", indexes={@ORM\Index(name="ORD_TRAN", columns={"ORD_TRAN"})})
* @ORM\Entity
*/
class DotpayHistory
{
/**
* @var integer
*
* @ORM\Column(name="ID_HIS", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $idHis;
/**
* @var string
*
* @ORM\Column(name="ORD_TRAN", type="string", length=20, nullable=false)
*/
private $ordTran;
/**
* @var boolean
*
* @ORM\Column(name="HIS_STATUS", type="integer", nullable=false)
*/
private $hisStatus;
/**
* @var \DateTime
*
* @ORM\Column(name="HIS_DATE", type="datetime", nullable=false)
*/
private $hisDate;
/**
* @var string
*
* @ORM\Column(name="DOTPAY_ID", type="string", length=50, nullable=false)
*/
private $dotpayId;
/**
* Get idHis
*
* @return integer
*/
public function getIdHis()
{
return $this->idHis;
}
/**
* Set ordTran
*
* @param string $ordTran
*
* @return DotpayHistory
*/
public function setOrdTran($ordTran)
{
$this->ordTran = $ordTran;
return $this;
}
/**
* Get ordTran
*
* @return string
*/
public function getOrdTran()
{
return $this->ordTran;
}
/**
* Set hisStatus
*
* @param integer $hisStatus
*
* @return DotpayHistory
*/
public function setHisStatus($hisStatus)
{
$this->hisStatus = $hisStatus;
return $this;
}
/**
* Get hisStatus
*
* @return integer
*/
public function getHisStatus()
{
return $this->hisStatus;
}
/**
* Set hisDate
*
* @param \DateTime $hisDate
*
* @return DotpayHistory
*/
public function setHisDate($hisDate)
{
$this->hisDate = $hisDate;
return $this;
}
/**
* Get hisDate
*
* @return \DateTime
*/
public function getHisDate()
{
return $this->hisDate;
}
/**
* Set dotpayId
*
* @param string $dotpayId
*
* @return DotpayHistory
*/
public function setDotpayId($dotpayId)
{
$this->dotpayId = $dotpayId;
return $this;
}
/**
* Get dotpayId
*
* @return string
*/
public function getDotpayId()
{
return $this->dotpayId;
}
}