src/AppBundle/MainBundle/Entity/PU_Vehicles.php line 208

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: apple
  5.  * Date: 29/03/19
  6.  * Time: 3:06 PM
  7.  */
  8. namespace App\AppBundle\MainBundle\Entity;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. use JsonSerializable;
  12. /**
  13.  * AddOns
  14.  *
  15.  * @ORM\Entity
  16.  * @ORM\Table(name="pu_vehicles")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class PU_Vehicles implements JsonSerializable
  20. {
  21.     /**
  22.      * @ORM\Column(type="integer")
  23.      * @ORM\Id
  24.      * @ORM\GeneratedValue(strategy="AUTO")
  25.      */
  26.     private $id;
  27.     /**
  28.      * @ORM\Column(type="integer", nullable=false)
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $user_id;
  32.     /**
  33.      * Many Token have one user. This is the owning side.
  34.      * @ORM\ManyToOne(targetEntity="User", inversedBy="vehicles")
  35.      * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  36.      */
  37.     private $user;
  38.     /**
  39.      * @ORM\Column(type="string", nullable=false)
  40.      * @Assert\NotBlank()
  41.      */
  42.     private $license_plate;
  43.     /**
  44.      * @ORM\Column(type="string", nullable=false)
  45.      * @Assert\NotBlank()
  46.      */
  47.     private $model;
  48.     /**
  49.      * @ORM\Column(type="string", nullable=true)
  50.      */
  51.     private $color "";
  52.     /**
  53.      * @ORM\Column(type="boolean", nullable=false)
  54.      * @Assert\NotBlank()
  55.      */
  56.     private $is_default;
  57.     /**
  58.      * @ORM\Column(type="boolean", nullable=false)
  59.      * @Assert\NotBlank()
  60.      */
  61.     private $is_active;
  62.     /**
  63.      * @return mixed
  64.      */
  65.     public function getId()
  66.     {
  67.         return $this->id;
  68.     }
  69.     /**
  70.      * @return mixed
  71.      */
  72.     public function getUserId()
  73.     {
  74.         return $this->user_id;
  75.     }
  76.     /**
  77.      * @param mixed $user_id
  78.      */
  79.     public function setUserId($user_id)
  80.     {
  81.         $this->user_id $user_id;
  82.     }
  83.     /**
  84.      * @return mixed
  85.      */
  86.     public function getLicensePlate()
  87.     {
  88.         return $this->license_plate;
  89.     }
  90.     /**
  91.      * @param mixed $license_plate
  92.      */
  93.     public function setLicensePlate($license_plate)
  94.     {
  95.         $this->license_plate $license_plate;
  96.     }
  97.     /**
  98.      * @return mixed
  99.      */
  100.     public function getModel()
  101.     {
  102.         return $this->model;
  103.     }
  104.     /**
  105.      * @param mixed $model
  106.      */
  107.     public function setModel($model)
  108.     {
  109.         $this->model $model;
  110.     }
  111.     /**
  112.      * @return mixed
  113.      */
  114.     public function getisDefault()
  115.     {
  116.         return $this->is_default;
  117.     }
  118.     /**
  119.      * @param mixed $is_default
  120.      */
  121.     public function setIsDefault($is_default)
  122.     {
  123.         $this->is_default $is_default;
  124.     }
  125.     /**
  126.      * @return mixed
  127.      */
  128.     public function getisActive()
  129.     {
  130.         return $this->is_active;
  131.     }
  132.     /**
  133.      * @param mixed $is_active
  134.      */
  135.     public function setIsActive($is_active)
  136.     {
  137.         $this->is_active $is_active;
  138.     }
  139.     /**
  140.      * @return mixed
  141.      */
  142.     public function getUser()
  143.     {
  144.         return $this->user;
  145.     }
  146.     /**
  147.      * @param mixed $user
  148.      */
  149.     public function setUser($user)
  150.     {
  151.         $this->user $user;
  152.     }
  153.     /**
  154.      * @return mixed
  155.      */
  156.     public function getColor()
  157.     {
  158.         return $this->color;
  159.     }
  160.     /**
  161.      * @param mixed $color
  162.      */
  163.     public function setColor($color)
  164.     {
  165.         $this->color $color;
  166.     }
  167.     public function jsonSerialize()
  168.     {
  169.         return array(
  170.             'id' => $this->id,
  171.             'license_plate' => $this->license_plate,
  172.             'model' => $this->model,
  173.             'color' => $this->color,
  174.             'is_default' => $this->is_default,
  175.             'is_active' => $this->is_active,
  176.         );
  177.     }
  178.     /**
  179.      * @var string $created
  180.      *
  181.      * @ORM\Column(name="created_at", type="string", nullable=false)
  182.      */
  183.     protected $createdAt;
  184.     /**
  185.      * @var string $updated
  186.      *
  187.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  188.      */
  189.     protected $updatedAt;
  190.     public function getCreatedAt()
  191.     {
  192.         return $this->createdAt;
  193.     }
  194.     public function setCreatedAt($createdAt)
  195.     {
  196.         $this->createdAt $createdAt;
  197.         return $this;
  198.     }
  199.     public function getUpdatedAt()
  200.     {
  201.         return $this->updatedAt;
  202.     }
  203.     public function setUpdatedAt($updatedAt)
  204.     {
  205.         $this->updatedAt $updatedAt;
  206.         return $this;
  207.     }
  208.     /**
  209.      * @ORM\PrePersist
  210.      * @ORM\PreUpdate
  211.      */
  212.     public function updatedTimestamps()
  213.     {
  214.         $this->setUpdatedAt(round(microtime(true) * 1000));
  215.         if ($this->getCreatedAt() === null) {
  216.             $this->setCreatedAt(round(microtime(true) * 1000));
  217.         }
  218.     }
  219.     public function __construct() {
  220.         $this->setCreatedAt(round(microtime(true) * 1000));
  221.     }
  222. }