<?php
namespace App\Entity\Sb;
use Doctrine\ORM\Mapping as ORM;
/**
* DotpayHistoryAll
*
* @ORM\Table(name="dotpay_history_all")
* @ORM\Entity
*/
class DotpayHistoryAll
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="ORD_TRAN", type="string", length=20, nullable=true)
*/
private $ordTran;
/**
* @var \DateTime
*
* @ORM\Column(name="date_at", type="datetime", nullable=false)
*/
private $dateAt;
/**
* @var string
*
* @ORM\Column(name="md5_p", type="string", length=60, nullable=true)
*/
private $md5P;
/**
* @var string
*
* @ORM\Column(name="md5_obl", type="string", length=60, nullable=true)
*/
private $md5Obl;
/**
* @var string
*
* @ORM\Column(name="post_p", type="text", length=65535, nullable=true)
*/
private $postP;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set ordTran
*
* @param string $ordTran
*
* @return DotpayHistoryAll
*/
public function setOrdTran($ordTran)
{
$this->ordTran = $ordTran;
return $this;
}
/**
* Get ordTran
*
* @return string
*/
public function getOrdTran()
{
return $this->ordTran;
}
/**
* Set dateAt
*
* @param \DateTime $dateAt
*
* @return DotpayHistoryAll
*/
public function setDateAt($dateAt)
{
$this->dateAt = $dateAt;
return $this;
}
/**
* Get dateAt
*
* @return \DateTime
*/
public function getDateAt()
{
return $this->dateAt;
}
/**
* Set md5P
*
* @param string $md5P
*
* @return DotpayHistoryAll
*/
public function setMd5P($md5P)
{
$this->md5P = $md5P;
return $this;
}
/**
* Get md5P
*
* @return string
*/
public function getMd5P()
{
return $this->md5P;
}
/**
* Set md5Obl
*
* @param string $md5Obl
*
* @return DotpayHistoryAll
*/
public function setMd5Obl($md5Obl)
{
$this->md5Obl = $md5Obl;
return $this;
}
/**
* Get md5Obl
*
* @return string
*/
public function getMd5Obl()
{
return $this->md5Obl;
}
/**
* Set postP
*
* @param string $postP
*
* @return DotpayHistoryAll
*/
public function setPostP($postP)
{
$this->postP = $postP;
return $this;
}
/**
* Get postP
*
* @return string
*/
public function getPostP()
{
return $this->postP;
}
}