src/Entity/SettingsCompany.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  6. /**
  7.  * SettingsCompany
  8.  *
  9.  * @ORM\Table(name="settings_company")
  10.  * @ORM\Entity(repositoryClass="App\Repository\SettingsCompanyRepository")
  11.  * @ORM\HasLifecycleCallbacks()
  12.  */
  13. class SettingsCompany
  14. {
  15.     /**
  16.      * @var int
  17.      *
  18.      * @ORM\Column(name="id", type="integer")
  19.      * @ORM\Id
  20.      * @ORM\GeneratedValue(strategy="AUTO")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @var string
  25.      *
  26.      * @ORM\Column(name="company", type="string", length=255)
  27.      */
  28.     private $company;
  29.     /**
  30.      * @var string
  31.      *
  32.      * @ORM\Column(name="id_document", type="string", length=255, nullable=true)
  33.      */
  34.     private $idDocument;
  35.     /**
  36.      * @var string
  37.      *
  38.      * @ORM\Column(name="registry", type="string", length=255, nullable=true)
  39.      */
  40.     private $registry;
  41.     /**
  42.      * @var string
  43.      *
  44.      * @ORM\Column(name="address", type="string", length=255, nullable=true)
  45.      */
  46.     private $address;
  47.     /**
  48.      * @var string
  49.      *
  50.      * @ORM\Column(name="zip_code", type="string", length=255, nullable=true)
  51.      */
  52.     private $zipCode;
  53.     /**
  54.      * @var string
  55.      *
  56.      * @ORM\Column(name="telephone", type="string", length=255, nullable=true)
  57.      */
  58.     private $telephone;
  59.     /**
  60.      * @var string
  61.      *
  62.      * @ORM\Column(name="fax", type="string", length=255, nullable=true)
  63.      */
  64.     private $fax;
  65.     /**
  66.      * @var string
  67.      *
  68.      * @ORM\Column(name="email", type="string", length=255, nullable=true)
  69.      */
  70.     private $email;
  71.     /**
  72.      * @var string
  73.      *
  74.      * @ORM\Column(name="note", type="text", nullable=true)
  75.      */
  76.     private $note;
  77.     /**
  78.      * @var string
  79.      *
  80.      * @ORM\Column(name="note_sin_iva", type="text", nullable=true)
  81.      */
  82.     private $noteSinIva;
  83.     /**
  84.      * @var \DateTime
  85.      *
  86.      * @ORM\Column(name="created_at", type="datetime")
  87.      */
  88.     private $createdAt;
  89.     /**
  90.      * @var int
  91.      *
  92.      * @ORM\Column(name="created_id", type="integer", nullable=true)
  93.      */
  94.     private $createdId;
  95.     /**
  96.      * @var \DateTime
  97.      *
  98.      * @ORM\Column(name="updated_at", type="datetime")
  99.      */
  100.     private $updatedAt;
  101.     /**
  102.      * @var int
  103.      *
  104.      * @ORM\Column(name="updated_id", type="integer", nullable=true)
  105.      */
  106.     private $updatedId;
  107.     /**
  108.      * @var string
  109.      *
  110.      * @ORM\Column(name="picture", type="string", length=255, nullable=true)
  111.      */
  112.     private $picture;
  113.     /**
  114.      * @var int
  115.      *
  116.      * @ORM\Column(name="priority", type="integer", nullable=true)
  117.      */
  118.     private $priority '0';
  119.     /**
  120.      * @var string
  121.      *
  122.      * @ORM\Column(name="token", type="string", nullable=true)
  123.      */
  124.     private $token;
  125.     /**
  126.      * Get id
  127.      *
  128.      * @return int
  129.      */
  130.     public function getId()
  131.     {
  132.         return $this->id;
  133.     }
  134.     /**
  135.      * Set company
  136.      *
  137.      * @param string $company
  138.      *
  139.      * @return SettingsCompany
  140.      */
  141.     public function setCompany($company)
  142.     {
  143.         $this->company $company;
  144.         return $this;
  145.     }
  146.     /**
  147.      * Get company
  148.      *
  149.      * @return string
  150.      */
  151.     public function getCompany()
  152.     {
  153.         return $this->company;
  154.     }
  155.     /**
  156.      * Set idDocument
  157.      *
  158.      * @param string $idDocument
  159.      *
  160.      * @return SettingsCompany
  161.      */
  162.     public function setIdDocument($idDocument)
  163.     {
  164.         $this->idDocument $idDocument;
  165.         return $this;
  166.     }
  167.     /**
  168.      * Get idDocument
  169.      *
  170.      * @return string
  171.      */
  172.     public function getIdDocument()
  173.     {
  174.         return $this->idDocument;
  175.     }
  176.     /**
  177.      * Set registry
  178.      *
  179.      * @param string $registry
  180.      *
  181.      * @return SettingsCompany
  182.      */
  183.     public function setRegistry($registry)
  184.     {
  185.         $this->registry $registry;
  186.         return $this;
  187.     }
  188.     /**
  189.      * Get registry
  190.      *
  191.      * @return string
  192.      */
  193.     public function getRegistry()
  194.     {
  195.         return $this->registry;
  196.     }
  197.     /**
  198.      * Set address
  199.      *
  200.      * @param string $address
  201.      *
  202.      * @return SettingsCompany
  203.      */
  204.     public function setAddress($address)
  205.     {
  206.         $this->address $address;
  207.         return $this;
  208.     }
  209.     /**
  210.      * Get address
  211.      *
  212.      * @return string
  213.      */
  214.     public function getAddress()
  215.     {
  216.         return $this->address;
  217.     }
  218.     /**
  219.      * Set zipCode
  220.      *
  221.      * @param string $zipCode
  222.      *
  223.      * @return SettingsCompany
  224.      */
  225.     public function setZipCode($zipCode)
  226.     {
  227.         $this->zipCode $zipCode;
  228.         return $this;
  229.     }
  230.     /**
  231.      * Get zipCode
  232.      *
  233.      * @return string
  234.      */
  235.     public function getZipCode()
  236.     {
  237.         return $this->zipCode;
  238.     }
  239.     /**
  240.      * Set telephone
  241.      *
  242.      * @param string $telephone
  243.      *
  244.      * @return SettingsCompany
  245.      */
  246.     public function setTelephone($telephone)
  247.     {
  248.         $this->telephone $telephone;
  249.         return $this;
  250.     }
  251.     /**
  252.      * Get telephone
  253.      *
  254.      * @return string
  255.      */
  256.     public function getTelephone()
  257.     {
  258.         return $this->telephone;
  259.     }
  260.     /**
  261.      * Set fax
  262.      *
  263.      * @param string $fax
  264.      *
  265.      * @return SettingsCompany
  266.      */
  267.     public function setFax($fax)
  268.     {
  269.         $this->fax $fax;
  270.         return $this;
  271.     }
  272.     /**
  273.      * Get fax
  274.      *
  275.      * @return string
  276.      */
  277.     public function getFax()
  278.     {
  279.         return $this->fax;
  280.     }
  281.     /**
  282.      * Set email
  283.      *
  284.      * @param string $email
  285.      *
  286.      * @return SettingsCompany
  287.      */
  288.     public function setEmail($email)
  289.     {
  290.         $this->email $email;
  291.         return $this;
  292.     }
  293.     /**
  294.      * Get email
  295.      *
  296.      * @return string
  297.      */
  298.     public function getEmail()
  299.     {
  300.         return $this->email;
  301.     }
  302.     /**
  303.      * Set note
  304.      *
  305.      * @param string $note
  306.      *
  307.      * @return SettingsCompany
  308.      */
  309.     public function setNote($note)
  310.     {
  311.         $this->note $note;
  312.         return $this;
  313.     }
  314.     /**
  315.      * Get note
  316.      *
  317.      * @return string
  318.      */
  319.     public function getNote()
  320.     {
  321.         return $this->note;
  322.     }
  323.     /**
  324.      * Set createdAt
  325.      *
  326.      * @param \DateTime $createdAt
  327.      *
  328.      * @return SettingsCompany
  329.      */
  330.     public function setCreatedAt(\Datetime $createdAt)
  331.     {
  332.         $this->createdAt $createdAt;
  333.         return $this;
  334.     }
  335.     /**
  336.      * Get createdAt
  337.      *
  338.      * @return \DateTime
  339.      */
  340.     public function getCreatedAt()
  341.     {
  342.         return $this->createdAt;
  343.     }
  344.     /**
  345.      * Set createdId
  346.      *
  347.      * @param integer $createdId
  348.      *
  349.      * @return SettingsCompany
  350.      */
  351.     public function setCreatedId($createdId)
  352.     {
  353.         $this->createdId $createdId;
  354.         return $this;
  355.     }
  356.     /**
  357.      * Get createdId
  358.      *
  359.      * @return integer
  360.      */
  361.     public function getCreatedId()
  362.     {
  363.         return $this->createdId;
  364.     }
  365.     /**
  366.      * Set updatedAt
  367.      *
  368.      * @param \DateTime $updatedAt
  369.      *
  370.      * @return SettingsCompany
  371.      */
  372.     public function setUpdatedAt(\Datetime $updatedAt)
  373.     {
  374.         $this->updatedAt $updatedAt;
  375.         return $this;
  376.     }
  377.     /**
  378.      * Get updatedAt
  379.      *
  380.      * @return \DateTime
  381.      */
  382.     public function getUpdatedAt()
  383.     {
  384.         return $this->updatedAt;
  385.     }
  386.     /**
  387.      * Set updatedId
  388.      *
  389.      * @param integer $updatedId
  390.      *
  391.      * @return SettingsCompany
  392.      */
  393.     public function setUpdatedId($updatedId)
  394.     {
  395.         $this->updatedId $updatedId;
  396.         return $this;
  397.     }
  398.     /**
  399.      * Get updatedId
  400.      *
  401.      * @return integer
  402.      */
  403.     public function getUpdatedId()
  404.     {
  405.         return $this->updatedId;
  406.     }
  407.     /**
  408.      * @ORM\PrePersist
  409.      */
  410.     public function setCreatedAtValue()
  411.     {
  412.         $this->createdAt = new \Datetime();
  413.     }
  414.     /**
  415.      * @ORM\PrePersist
  416.      * @ORM\PreUpdate
  417.      */
  418.     public function setUpdatedAtValue()
  419.     {
  420.         $this->updatedAt = new \Datetime();
  421.     }
  422.     /**
  423.      * Set priority
  424.      *
  425.      * @param integer $priority
  426.      *
  427.      * @return SettingsCompany
  428.      */
  429.     public function setPriority($priority)
  430.     {
  431.         $this->priority $priority;
  432.         return $this;
  433.     }
  434.     /**
  435.      * Get priority
  436.      *
  437.      * @return integer
  438.      */
  439.     public function getPriority()
  440.     {
  441.         return $this->priority;
  442.     }
  443.     /**
  444.      * Set picture
  445.      *
  446.      * @param string $picture
  447.      *
  448.      * @return SettingsCompany
  449.      */
  450.     public function setPicture($picture)
  451.     {
  452.         $this->picture $picture;
  453.         return $this;
  454.     }
  455.     /**
  456.      * Get picture
  457.      *
  458.      * @return string
  459.      */
  460.     public function getPicture()
  461.     {
  462.         return $this->picture;
  463.     }
  464.     /**
  465.      * Set noteSinIva
  466.      *
  467.      * @param string $noteSinIva
  468.      *
  469.      * @return SettingsCompany
  470.      */
  471.     public function setNoteSinIva($noteSinIva)
  472.     {
  473.         $this->noteSinIva $noteSinIva;
  474.         return $this;
  475.     }
  476.     /**
  477.      * Get noteSinIva
  478.      *
  479.      * @return string
  480.      */
  481.     public function getNoteSinIva()
  482.     {
  483.         return $this->noteSinIva;
  484.     }
  485.     /**
  486.      * @return string
  487.      */
  488.     public function getToken()
  489.     {
  490.         return $this->token;
  491.     }
  492.     /**
  493.      * @param string $token
  494.      */
  495.     public function setToken($token)
  496.     {
  497.         $this->token $token;
  498.     }
  499. }