src/AppBundle/MainBundle/Entity/WP_Currency.php line 183

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: apple
  5.  * Date: 29/03/19
  6.  * Time: 2:55 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_currency")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class WP_Currency  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="string", nullable=false)
  34.      * @Assert\NotBlank()
  35.      */
  36.     private $symbol;
  37.     /**
  38.      * @ORM\Column(type="string", nullable=false)
  39.      * @Assert\NotBlank()
  40.      */
  41.     private $code;
  42.     /**
  43.      * @ORM\Column(type="boolean", nullable=false)
  44.      * @Assert\NotBlank()
  45.      */
  46.     private $active;
  47.     /**
  48.      * @ORM\Column(type="string", nullable=false)
  49.      * @Assert\NotBlank()
  50.      */
  51.     private $flag_url;
  52.     /**
  53.      * @ORM\Column(type="integer", nullable=false)
  54.      * @Assert\NotBlank()
  55.      */
  56.     private $seq_number;
  57.     /**
  58.      * @return mixed
  59.      */
  60.     public function getId()
  61.     {
  62.         return $this->id;
  63.     }
  64.     /**
  65.      * @return mixed
  66.      */
  67.     public function getName()
  68.     {
  69.         return $this->name;
  70.     }
  71.     /**
  72.      * @param mixed $name
  73.      */
  74.     public function setName($name)
  75.     {
  76.         $this->name $name;
  77.     }
  78.     /**
  79.      * @return mixed
  80.      */
  81.     public function getSymbol()
  82.     {
  83.         return $this->symbol;
  84.     }
  85.     /**
  86.      * @param mixed $symbol
  87.      */
  88.     public function setSymbol($symbol)
  89.     {
  90.         $this->symbol $symbol;
  91.     }
  92.     /**
  93.      * @return mixed
  94.      */
  95.     public function getCode()
  96.     {
  97.         return $this->code;
  98.     }
  99.     /**
  100.      * @param mixed $code
  101.      */
  102.     public function setCode($code)
  103.     {
  104.         $this->code $code;
  105.     }
  106.     /**
  107.      * @return mixed
  108.      */
  109.     public function getActive()
  110.     {
  111.         return $this->active;
  112.     }
  113.     /**
  114.      * @param mixed $active
  115.      */
  116.     public function setActive($active)
  117.     {
  118.         $this->active $active;
  119.     }
  120.     /**
  121.      * @return mixed
  122.      */
  123.     public function getFlagUrl()
  124.     {
  125.         return $this->flag_url;
  126.     }
  127.     /**
  128.      * @param mixed $flag_url
  129.      */
  130.     public function setFlagUrl($flag_url)
  131.     {
  132.         $this->flag_url $flag_url;
  133.     }
  134.     /**
  135.      * @return mixed
  136.      */
  137.     public function getSeqNumber()
  138.     {
  139.         return $this->seq_number;
  140.     }
  141.     /**
  142.      * @param mixed $seq_number
  143.      */
  144.     public function setSeqNumber($seq_number)
  145.     {
  146.         $this->seq_number $seq_number;
  147.     }
  148.     public function jsonSerialize()
  149.     {
  150.         return array(
  151.             'id' => $this->id,
  152.             'name' => $this->name,
  153.             'active' => $this->active,
  154.             'seq_number' => $this->seq_number,
  155.             'symbol' => $this->symbol,
  156.             'flag_url' => $this->flag_url,
  157.             'code' => $this->code
  158.         );
  159.     }
  160.     /**
  161.      * @var string $created
  162.      *
  163.      * @ORM\Column(name="created_at", type="string", nullable=false)
  164.      */
  165.     protected $createdAt;
  166.     /**
  167.      * @var string $updated
  168.      *
  169.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  170.      */
  171.     protected $updatedAt;
  172.     public function getCreatedAt()
  173.     {
  174.         return $this->createdAt;
  175.     }
  176.     public function setCreatedAt($createdAt)
  177.     {
  178.         $this->createdAt $createdAt;
  179.         return $this;
  180.     }
  181.     public function getUpdatedAt()
  182.     {
  183.         return $this->updatedAt;
  184.     }
  185.     public function setUpdatedAt($updatedAt)
  186.     {
  187.         $this->updatedAt $updatedAt;
  188.         return $this;
  189.     }
  190.     /**
  191.      * @ORM\PrePersist
  192.      * @ORM\PreUpdate
  193.      */
  194.     public function updatedTimestamps()
  195.     {
  196.         $this->setUpdatedAt(round(microtime(true) * 1000));
  197.         if ($this->getCreatedAt() === null) {
  198.             $this->setCreatedAt(round(microtime(true) * 1000));
  199.         }
  200.     }
  201.     public function __construct() {
  202.         $this->setCreatedAt(round(microtime(true) * 1000));
  203.     }
  204. }