<?php
/**
* Created by PhpStorm.
* User: apple
* Date: 19/05/19
* Time: 3:42 PM
*/
namespace App\AppBundle\MainBundle\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use JsonSerializable;
/**
* AddOns
*
* @ORM\Entity
* @ORM\Table(name="wp_manage_notifications_master")
* @ORM\HasLifecycleCallbacks()
*/
class WP_ManageNotificationsMaster implements JsonSerializable
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(type="string", nullable=false)
* @Assert\NotBlank()
*/
private $name;
/**
* @ORM\Column(type="boolean", nullable=false)
* @Assert\NotBlank()
*/
private $active;
/**
* @ORM\Column(type="integer", nullable=false)
* @Assert\NotBlank()
*/
private $seq_number;
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @return mixed
*/
public function getName()
{
return $this->name;
}
/**
* @param mixed $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return mixed
*/
public function getActive()
{
return $this->active;
}
/**
* @param mixed $active
*/
public function setActive($active)
{
$this->active = $active;
}
/**
* @return mixed
*/
public function getSeqNumber()
{
return $this->seq_number;
}
/**
* @param mixed $seq_number
*/
public function setSeqNumber($seq_number)
{
$this->seq_number = $seq_number;
}
public function jsonSerialize()
{
return array(
'id' => $this->id,
'seq_number' => $this->seq_number,
'active' => $this->active,
'name' => $this->name,
'manage_notifications_sub' => $this->manage_notifications_sub
);
}
/**
* @var string $created
*
* @ORM\Column(name="created_at", type="string", nullable=false)
*/
protected $createdAt;
/**
* @var string $updated
*
* @ORM\Column(name="updated_at", type="string", nullable=false)
*/
protected $updatedAt;
public function getCreatedAt()
{
return $this->createdAt;
}
public function setCreatedAt($createdAt)
{
$this->createdAt = $createdAt;
return $this;
}
public function getUpdatedAt()
{
return $this->updatedAt;
}
public function setUpdatedAt($updatedAt)
{
$this->updatedAt = $updatedAt;
return $this;
}
/**
* @ORM\PrePersist
* @ORM\PreUpdate
*/
public function updatedTimestamps()
{
$this->setUpdatedAt(round(microtime(true) * 1000));
if ($this->getCreatedAt() === null) {
$this->setCreatedAt(round(microtime(true) * 1000));
}
}
public function __construct() {
$this->manage_notifications_sub = new ArrayCollection();
$this->setCreatedAt(round(microtime(true) * 1000));
}
/**
* One product has many features. This is the inverse side.
* @ORM\OneToMany(targetEntity="WP_ManageNotificationsSub", mappedBy="manage_notifications_master")
*/
private $manage_notifications_sub;
/**
* @return mixed
*/
public function getManageNotificationSub()
{
return $this->manage_notifications_sub;
}
/**
* @param mixed $manage_notification_sub
*/
public function setManageNotificationSub($manage_notification_sub)
{
$this->manage_notifications_sub = $manage_notification_sub;
}
}