src/MDS/AvexpressBundle/Entity/AveDocProformaDeposit.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\MDS\AvexpressBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * AveDocProformaDeposit
  6.  *
  7.  * @ORM\Table(name="ave_doc_proforma_deposit")
  8.  * @ORM\Entity(repositoryClass="App\MDS\AvexpressBundle\Repository\AveDocProformaDepositRepository")
  9.  */
  10. class AveDocProformaDeposit
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var int
  22.      *
  23.      * @ORM\Column(name="controlId", type="integer", nullable=true)
  24.      */
  25.     private $controlId;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="name", type="string", length=255)
  30.      */
  31.     private $name;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="amount", type="string", length=255)
  36.      */
  37.     private $amount;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="iva", type="string", length=255)
  42.      */
  43.     private $iva;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="total", type="string", length=255)
  48.      */
  49.     private $total;
  50.     /**
  51.      * @var int
  52.      *
  53.      * @ORM\Column(name="file_id", type="integer")
  54.      */
  55.     private $fileId;
  56.     /**
  57.      * @var \DateTime
  58.      *
  59.      * @ORM\Column(name="created_at", type="datetime")
  60.      */
  61.     private $createdAt;
  62.     /**
  63.      * @var int
  64.      *
  65.      * @ORM\Column(name="created_id", type="integer")
  66.      */
  67.     private $createdId;
  68.     /**
  69.      * @var \DateTime
  70.      *
  71.      * @ORM\Column(name="updated_at", type="datetime")
  72.      */
  73.     private $updatedAt;
  74.     /**
  75.      * @var int
  76.      *
  77.      * @ORM\Column(name="updated_id", type="integer")
  78.      */
  79.     private $updatedId;
  80.     /**
  81.      * Get id
  82.      *
  83.      * @return int
  84.      */
  85.     public function getId()
  86.     {
  87.         return $this->id;
  88.     }
  89.     /**
  90.      * Set controlId
  91.      *
  92.      * @param integer $controlId
  93.      *
  94.      * @return AveDocProformaDeposit
  95.      */
  96.     public function setControlId($controlId)
  97.     {
  98.         $this->controlId $controlId;
  99.         return $this;
  100.     }
  101.     /**
  102.      * Get controlId
  103.      *
  104.      * @return integer
  105.      */
  106.     public function getControlId()
  107.     {
  108.         return $this->controlId;
  109.     }
  110.     /**
  111.      * Set name
  112.      *
  113.      * @param string $name
  114.      *
  115.      * @return AveDocProformaDeposit
  116.      */
  117.     public function setName($name)
  118.     {
  119.         $this->name $name;
  120.         return $this;
  121.     }
  122.     /**
  123.      * Get name
  124.      *
  125.      * @return string
  126.      */
  127.     public function getName()
  128.     {
  129.         return $this->name;
  130.     }
  131.     /**
  132.      * Set amount
  133.      *
  134.      * @param string $amount
  135.      *
  136.      * @return AveDocProformaDeposit
  137.      */
  138.     public function setAmount($amount)
  139.     {
  140.         $this->amount $amount;
  141.         return $this;
  142.     }
  143.     /**
  144.      * Get amount
  145.      *
  146.      * @return string
  147.      */
  148.     public function getAmount()
  149.     {
  150.         return $this->amount;
  151.     }
  152.     /**
  153.      * Set iva
  154.      *
  155.      * @param string $iva
  156.      *
  157.      * @return AveDocProformaDeposit
  158.      */
  159.     public function setIva($iva)
  160.     {
  161.         $this->iva $iva;
  162.         return $this;
  163.     }
  164.     /**
  165.      * Get iva
  166.      *
  167.      * @return string
  168.      */
  169.     public function getIva()
  170.     {
  171.         return $this->iva;
  172.     }
  173.     /**
  174.      * Set total
  175.      *
  176.      * @param string $total
  177.      *
  178.      * @return AveDocProformaDeposit
  179.      */
  180.     public function setTotal($total)
  181.     {
  182.         $this->total $total;
  183.         return $this;
  184.     }
  185.     /**
  186.      * Get total
  187.      *
  188.      * @return string
  189.      */
  190.     public function getTotal()
  191.     {
  192.         return $this->total;
  193.     }
  194.     /**
  195.      * Set fileId
  196.      *
  197.      * @param integer $fileId
  198.      *
  199.      * @return AveDocProformaDeposit
  200.      */
  201.     public function setFileId($fileId)
  202.     {
  203.         $this->fileId $fileId;
  204.         return $this;
  205.     }
  206.     /**
  207.      * Get fileId
  208.      *
  209.      * @return integer
  210.      */
  211.     public function getFileId()
  212.     {
  213.         return $this->fileId;
  214.     }
  215.     /**
  216.      * Set createdAt
  217.      *
  218.      * @param \DateTime $createdAt
  219.      *
  220.      * @return AveDocProformaDeposit
  221.      */
  222.     public function setCreatedAt($createdAt)
  223.     {
  224.         $this->createdAt $createdAt;
  225.         return $this;
  226.     }
  227.     /**
  228.      * Get createdAt
  229.      *
  230.      * @return \DateTime
  231.      */
  232.     public function getCreatedAt()
  233.     {
  234.         return $this->createdAt;
  235.     }
  236.     /**
  237.      * Set createdId
  238.      *
  239.      * @param integer $createdId
  240.      *
  241.      * @return AveDocProformaDeposit
  242.      */
  243.     public function setCreatedId($createdId)
  244.     {
  245.         $this->createdId $createdId;
  246.         return $this;
  247.     }
  248.     /**
  249.      * Get createdId
  250.      *
  251.      * @return integer
  252.      */
  253.     public function getCreatedId()
  254.     {
  255.         return $this->createdId;
  256.     }
  257.     /**
  258.      * Set updatedAt
  259.      *
  260.      * @param \DateTime $updatedAt
  261.      *
  262.      * @return AveDocProformaDeposit
  263.      */
  264.     public function setUpdatedAt($updatedAt)
  265.     {
  266.         $this->updatedAt $updatedAt;
  267.         return $this;
  268.     }
  269.     /**
  270.      * Get updatedAt
  271.      *
  272.      * @return \DateTime
  273.      */
  274.     public function getUpdatedAt()
  275.     {
  276.         return $this->updatedAt;
  277.     }
  278.     /**
  279.      * Set updatedId
  280.      *
  281.      * @param integer $updatedId
  282.      *
  283.      * @return AveDocProformaDeposit
  284.      */
  285.     public function setUpdatedId($updatedId)
  286.     {
  287.         $this->updatedId $updatedId;
  288.         return $this;
  289.     }
  290.     /**
  291.      * Get updatedId
  292.      *
  293.      * @return integer
  294.      */
  295.     public function getUpdatedId()
  296.     {
  297.         return $this->updatedId;
  298.     }
  299. }