src/AppBundle/MainBundle/Entity/WP_Amenities.php line 115

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: apple
  5.  * Date: 29/03/19
  6.  * Time: 2:43 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="wp_amenities")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class WP_Amenities  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="string", nullable=false)
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $name;
  32.     /**
  33.      * @ORM\Column(type="boolean", nullable=false)
  34.      * @Assert\NotBlank()
  35.      */
  36.     private $active;
  37.     /**
  38.      * @ORM\Column(type="integer", nullable=false)
  39.      * @Assert\NotBlank()
  40.      */
  41.     private $seq_number;
  42.     /**
  43.      * @return mixed
  44.      */
  45.     public function getId()
  46.     {
  47.         return $this->id;
  48.     }
  49.     /**
  50.      * @return mixed
  51.      */
  52.     public function getName()
  53.     {
  54.         return $this->name;
  55.     }
  56.     /**
  57.      * @param mixed $name
  58.      */
  59.     public function setName($name)
  60.     {
  61.         $this->name $name;
  62.     }
  63.     /**
  64.      * @return mixed
  65.      */
  66.     public function getActive()
  67.     {
  68.         return $this->active;
  69.     }
  70.     /**
  71.      * @param mixed $active
  72.      */
  73.     public function setActive($active)
  74.     {
  75.         $this->active $active;
  76.     }
  77.     /**
  78.      * @return mixed
  79.      */
  80.     public function getSeqNumber()
  81.     {
  82.         return $this->seq_number;
  83.     }
  84.     /**
  85.      * @param mixed $seq_number
  86.      */
  87.     public function setSeqNumber($seq_number)
  88.     {
  89.         $this->seq_number $seq_number;
  90.     }
  91.     
  92.     
  93.     public function jsonSerialize()
  94.     {
  95.         return array(
  96.             'id' => $this->id,
  97.             'name' => $this->name,
  98.             'active' => $this->active,
  99.             'seq_number' => $this->seq_number,
  100.         );
  101.     }
  102.     /**
  103.      * @var string $created
  104.      *
  105.      * @ORM\Column(name="created_at", type="string", nullable=false)
  106.      */
  107.     protected $createdAt;
  108.     /**
  109.      * @var string $updated
  110.      *
  111.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  112.      */
  113.     protected $updatedAt;
  114.     public function getCreatedAt()
  115.     {
  116.         return $this->createdAt;
  117.     }
  118.     public function setCreatedAt($createdAt)
  119.     {
  120.         $this->createdAt $createdAt;
  121.         return $this;
  122.     }
  123.     public function getUpdatedAt()
  124.     {
  125.         return $this->updatedAt;
  126.     }
  127.     public function setUpdatedAt($updatedAt)
  128.     {
  129.         $this->updatedAt $updatedAt;
  130.         return $this;
  131.     }
  132.     /**
  133.      * @ORM\PrePersist
  134.      * @ORM\PreUpdate
  135.      */
  136.     public function updatedTimestamps()
  137.     {
  138.         $this->setUpdatedAt(round(microtime(true) * 1000));
  139.         if ($this->getCreatedAt() === null) {
  140.             $this->setCreatedAt(round(microtime(true) * 1000));
  141.         }
  142.     }
  143.     public function __construct() {
  144.         $this->setCreatedAt(round(microtime(true) * 1000));
  145.     }
  146. }