src/Entity/Sb/DotpayHistoryAll.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Sb;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * DotpayHistoryAll
  6.  *
  7.  * @ORM\Table(name="dotpay_history_all")
  8.  * @ORM\Entity
  9.  */
  10. class DotpayHistoryAll
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="ORD_TRAN", type="string", length=20, nullable=true)
  24.      */
  25.     private $ordTran;
  26.     /**
  27.      * @var \DateTime
  28.      *
  29.      * @ORM\Column(name="date_at", type="datetime", nullable=false)
  30.      */
  31.     private $dateAt;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="md5_p", type="string", length=60, nullable=true)
  36.      */
  37.     private $md5P;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="md5_obl", type="string", length=60, nullable=true)
  42.      */
  43.     private $md5Obl;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="post_p", type="text", length=65535, nullable=true)
  48.      */
  49.     private $postP;
  50.     /**
  51.      * Get id
  52.      *
  53.      * @return integer
  54.      */
  55.     public function getId()
  56.     {
  57.         return $this->id;
  58.     }
  59.     /**
  60.      * Set ordTran
  61.      *
  62.      * @param string $ordTran
  63.      *
  64.      * @return DotpayHistoryAll
  65.      */
  66.     public function setOrdTran($ordTran)
  67.     {
  68.         $this->ordTran $ordTran;
  69.         return $this;
  70.     }
  71.     /**
  72.      * Get ordTran
  73.      *
  74.      * @return string
  75.      */
  76.     public function getOrdTran()
  77.     {
  78.         return $this->ordTran;
  79.     }
  80.     /**
  81.      * Set dateAt
  82.      *
  83.      * @param \DateTime $dateAt
  84.      *
  85.      * @return DotpayHistoryAll
  86.      */
  87.     public function setDateAt($dateAt)
  88.     {
  89.         $this->dateAt $dateAt;
  90.         return $this;
  91.     }
  92.     /**
  93.      * Get dateAt
  94.      *
  95.      * @return \DateTime
  96.      */
  97.     public function getDateAt()
  98.     {
  99.         return $this->dateAt;
  100.     }
  101.     /**
  102.      * Set md5P
  103.      *
  104.      * @param string $md5P
  105.      *
  106.      * @return DotpayHistoryAll
  107.      */
  108.     public function setMd5P($md5P)
  109.     {
  110.         $this->md5P $md5P;
  111.         return $this;
  112.     }
  113.     /**
  114.      * Get md5P
  115.      *
  116.      * @return string
  117.      */
  118.     public function getMd5P()
  119.     {
  120.         return $this->md5P;
  121.     }
  122.     /**
  123.      * Set md5Obl
  124.      *
  125.      * @param string $md5Obl
  126.      *
  127.      * @return DotpayHistoryAll
  128.      */
  129.     public function setMd5Obl($md5Obl)
  130.     {
  131.         $this->md5Obl $md5Obl;
  132.         return $this;
  133.     }
  134.     /**
  135.      * Get md5Obl
  136.      *
  137.      * @return string
  138.      */
  139.     public function getMd5Obl()
  140.     {
  141.         return $this->md5Obl;
  142.     }
  143.     /**
  144.      * Set postP
  145.      *
  146.      * @param string $postP
  147.      *
  148.      * @return DotpayHistoryAll
  149.      */
  150.     public function setPostP($postP)
  151.     {
  152.         $this->postP $postP;
  153.         return $this;
  154.     }
  155.     /**
  156.      * Get postP
  157.      *
  158.      * @return string
  159.      */
  160.     public function getPostP()
  161.     {
  162.         return $this->postP;
  163.     }
  164. }