src/Entity/SupplierTechnology.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * SupplierTechnology
  6.  *
  7.  * @ORM\Table(name="suppliers_technology")
  8.  * @ORM\Entity(repositoryClass="App\Repository\SupplierTechnologyRepository")
  9.  * @ORM\HasLifecycleCallbacks()
  10.  */
  11. class SupplierTechnology
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Column(name="id", type="integer")
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @var int
  23.      *
  24.      * @ORM\Column(name="supplier_id", type="integer")
  25.      */
  26.     private $supplierId;
  27.     /**
  28.      * @var int
  29.      *
  30.      * @ORM\Column(name="control_category_id", type="integer")
  31.      */
  32.     private $controlCat;
  33.     /**
  34.      * @var string
  35.      *
  36.      * @ORM\Column(name="control_category", type="string", length=255)
  37.      */
  38.     private $controlCategory;
  39.     /**
  40.      * @var string
  41.      *
  42.      * @ORM\Column(name="title", type="string", length=255)
  43.      */
  44.     private $title;
  45.     /**
  46.      * @var string
  47.      *
  48.      * @ORM\Column(name="modules", type="string", length=255, nullable=true)
  49.      */
  50.     private $modules;
  51.     /**
  52.      * @var string
  53.      *
  54.      * @ORM\Column(name="type", type="string", length=255, nullable=true)
  55.      */
  56.     private $type;
  57.     /**
  58.      * @var string
  59.      *
  60.      * @ORM\Column(name="currency", type="string", length=255, nullable=true)
  61.      */
  62.     private $currency;
  63.     /**
  64.      * @var string
  65.      *
  66.      * @ORM\Column(name="price", type="decimal", precision=10, scale=2, nullable=true)
  67.      */
  68.     private $price;
  69.     /**
  70.      * @var string
  71.      *
  72.      * @ORM\Column(name="commission", type="string", length=255, nullable=true)
  73.      */
  74.     private $commission;
  75.     /**
  76.      * @var string
  77.      *
  78.      * @ORM\Column(name="iva", type="string", length=255, nullable=true)
  79.      */
  80.     private $iva;
  81.     /**
  82.      * @var int
  83.      *
  84.      * @ORM\Column(name="created_id", type="integer")
  85.      */
  86.     private $createdId;
  87.     /**
  88.      * @var \DateTime
  89.      *
  90.      * @ORM\Column(name="created_at", type="datetime")
  91.      */
  92.     private $createdAt;
  93.     /**
  94.      * @var int
  95.      *
  96.      * @ORM\Column(name="updated_id", type="integer")
  97.      */
  98.     private $updatedId;
  99.     /**
  100.      * @var \DateTime
  101.      *
  102.      * @ORM\Column(name="updated_at", type="datetime")
  103.      */
  104.     private $updatedAt;
  105.     /**
  106.      * @var string
  107.      *
  108.      * @ORM\Column(name="supplier_id_ctrl", type="integer")
  109.      */
  110.     private $supplierIdCtrl;
  111.     /**
  112.      * Get id
  113.      *
  114.      * @return int
  115.      */
  116.     public function getId()
  117.     {
  118.         return $this->id;
  119.     }
  120.     /**
  121.      * Set supplierId
  122.      *
  123.      * @param integer $supplierId
  124.      *
  125.      * @return SupplierTechnology
  126.      */
  127.     public function setSupplierId($supplierId)
  128.     {
  129.         $this->supplierId $supplierId;
  130.         return $this;
  131.     }
  132.     /**
  133.      * Get supplierId
  134.      *
  135.      * @return int
  136.      */
  137.     public function getSupplierId()
  138.     {
  139.         return $this->supplierId;
  140.     }
  141.     /**
  142.      * Set controlCat
  143.      *
  144.      * @param integer $controlCat
  145.      *
  146.      * @return SupplierTechnology
  147.      */
  148.     public function setControlCat($controlCat)
  149.     {
  150.         $this->controlCat $controlCat;
  151.         return $this;
  152.     }
  153.     /**
  154.      * Get controlCat
  155.      *
  156.      * @return integer
  157.      */
  158.     public function getControlCat()
  159.     {
  160.         return $this->controlCat;
  161.     }
  162.     /**
  163.      * Set controlCategory
  164.      *
  165.      * @param string $controlCategory
  166.      *
  167.      * @return SupplierTechnology
  168.      */
  169.     public function setControlCategory($controlCategory)
  170.     {
  171.         $this->controlCategory $controlCategory;
  172.         return $this;
  173.     }
  174.     /**
  175.      * Get controlCategory
  176.      *
  177.      * @return string
  178.      */
  179.     public function getControlCategory()
  180.     {
  181.         return $this->controlCategory;
  182.     }
  183.     /**
  184.      * Set title
  185.      *
  186.      * @param string $title
  187.      *
  188.      * @return SupplierTechnology
  189.      */
  190.     public function setTitle($title)
  191.     {
  192.         $this->title $title;
  193.         return $this;
  194.     }
  195.     /**
  196.      * Get title
  197.      *
  198.      * @return string
  199.      */
  200.     public function getTitle()
  201.     {
  202.         return $this->title;
  203.     }
  204.     /**
  205.      * Set modules
  206.      *
  207.      * @param string $modules
  208.      *
  209.      * @return SupplierTechnology
  210.      */
  211.     public function setModules($modules)
  212.     {
  213.         $this->modules $modules;
  214.         return $this;
  215.     }
  216.     /**
  217.      * Get modules
  218.      *
  219.      * @return string
  220.      */
  221.     public function getModules()
  222.     {
  223.         return $this->modules;
  224.     }
  225.     /**
  226.      * Set type
  227.      *
  228.      * @param string $type
  229.      *
  230.      * @return SupplierTechnology
  231.      */
  232.     public function setType($type)
  233.     {
  234.         $this->type $type;
  235.         return $this;
  236.     }
  237.     /**
  238.      * Get type
  239.      *
  240.      * @return string
  241.      */
  242.     public function getType()
  243.     {
  244.         return $this->type;
  245.     }
  246.     /**
  247.      * Set currency
  248.      *
  249.      * @param string $currency
  250.      *
  251.      * @return SupplierTechnology
  252.      */
  253.     public function setCurrency($currency)
  254.     {
  255.         $this->currency $currency;
  256.         return $this;
  257.     }
  258.     /**
  259.      * Get currency
  260.      *
  261.      * @return string
  262.      */
  263.     public function getCurrency()
  264.     {
  265.         return $this->currency;
  266.     }
  267.     /**
  268.      * Set price
  269.      *
  270.      * @param string $price
  271.      *
  272.      * @return SupplierTechnology
  273.      */
  274.     public function setPrice($price)
  275.     {
  276.         $this->price $price;
  277.         return $this;
  278.     }
  279.     /**
  280.      * Get price
  281.      *
  282.      * @return string
  283.      */
  284.     public function getPrice()
  285.     {
  286.         return $this->price;
  287.     }
  288.     /**
  289.      * Set commission
  290.      *
  291.      * @param string $commission
  292.      *
  293.      * @return SupplierTechnology
  294.      */
  295.     public function setCommission($commission)
  296.     {
  297.         $this->commission $commission;
  298.         return $this;
  299.     }
  300.     /**
  301.      * Get commission
  302.      *
  303.      * @return string
  304.      */
  305.     public function getCommission()
  306.     {
  307.         return $this->commission;
  308.     }
  309.     /**
  310.      * Set iva
  311.      *
  312.      * @param string $iva
  313.      *
  314.      * @return SupplierTechnology
  315.      */
  316.     public function setIva($iva)
  317.     {
  318.         $this->iva $iva;
  319.         return $this;
  320.     }
  321.     /**
  322.      * Get iva
  323.      *
  324.      * @return string
  325.      */
  326.     public function getIva()
  327.     {
  328.         return $this->iva;
  329.     }
  330.     /**
  331.      * Set createdId
  332.      *
  333.      * @param integer $createdId
  334.      *
  335.      * @return SupplierTechnology
  336.      */
  337.     public function setCreatedId($createdId)
  338.     {
  339.         $this->createdId $createdId;
  340.         return $this;
  341.     }
  342.     /**
  343.      * Get createdId
  344.      *
  345.      * @return integer
  346.      */
  347.     public function getCreatedId()
  348.     {
  349.         return $this->createdId;
  350.     }
  351.     /**
  352.      * Set createdAt
  353.      *
  354.      * @param \DateTime $createdAt
  355.      *
  356.      * @return SupplierTechnology
  357.      */
  358.     public function setCreatedAt(\Datetime $createdAt)
  359.     {
  360.         $this->createdAt $createdAt;
  361.         return $this;
  362.     }
  363.     /**
  364.      * Get createdAt
  365.      *
  366.      * @return \DateTime
  367.      */
  368.     public function getCreatedAt()
  369.     {
  370.         return $this->createdAt;
  371.     }
  372.     /**
  373.      * Set updatedId
  374.      *
  375.      * @param integer $updatedId
  376.      *
  377.      * @return SupplierTechnology
  378.      */
  379.     public function setUpdatedId($updatedId)
  380.     {
  381.         $this->updatedId $updatedId;
  382.         return $this;
  383.     }
  384.     /**
  385.      * Get updatedId
  386.      *
  387.      * @return integer
  388.      */
  389.     public function getUpdatedId()
  390.     {
  391.         return $this->updatedId;
  392.     }
  393.     /**
  394.      * Set updatedAt
  395.      *
  396.      * @param \DateTime $updatedAt
  397.      *
  398.      * @return SupplierTechnology
  399.      */
  400.     public function setUpdatedAt(\Datetime $updatedAt)
  401.     {
  402.         $this->updatedAt $updatedAt;
  403.         return $this;
  404.     }
  405.     /**
  406.      * Get updatedAt
  407.      *
  408.      * @return \DateTime
  409.      */
  410.     public function getUpdatedAt()
  411.     {
  412.         return $this->updatedAt;
  413.     }
  414.     /**
  415.      * Set supplierIdCtrl
  416.      *
  417.      * @param integer $supplierIdCtrl
  418.      *
  419.      * @return SupplierTechnology
  420.      */
  421.     public function setSupplierIdCtrl($supplierIdCtrl)
  422.     {
  423.         $this->supplierIdCtrl $supplierIdCtrl;
  424.         return $this;
  425.     }
  426.     /**
  427.      * Get supplierIdCtrl
  428.      *
  429.      * @return integer
  430.      */
  431.     public function getSupplierIdCtrl()
  432.     {
  433.         return $this->supplierIdCtrl;
  434.     }
  435.     /**
  436.      * @ORM\PrePersist
  437.      */
  438.     public function setCreatedAtValue()
  439.     {
  440.         $this->createdAt = new \Datetime();
  441.     }
  442.     /**
  443.      * @ORM\PrePersist
  444.      * @ORM\PreUpdate
  445.      */
  446.     public function setUpdatedAtValue()
  447.     {
  448.         $this->updatedAt = new \Datetime();
  449.     }
  450. }