123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * Groups
- *
- * @ORM\Table(name="groups")
- * @ORM\Entity
- */
- class Groups
- {
- /**
- * @var integer
- *
- * @ORM\Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @var string
- *
- * @ORM\Column(name="name", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $name;
- /**
- * @var string
- *
- * @ORM\Column(name="description", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $description;
- /**
- * @var string
- *
- * @ORM\Column(name="picture_uri", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $pictureUri;
- /**
- * @var string
- *
- * @ORM\Column(name="url", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $url;
- /**
- * @var integer
- *
- * @ORM\Column(name="visibility", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $visibility;
- /**
- * @var string
- *
- * @ORM\Column(name="updated_on", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $updatedOn;
- /**
- * @var string
- *
- * @ORM\Column(name="created_on", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $createdOn;
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set name
- *
- * @param string $name
- * @return Groups
- */
- public function setName($name)
- {
- $this->name = $name;
- return $this;
- }
- /**
- * Get name
- *
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * Set description
- *
- * @param string $description
- * @return Groups
- */
- public function setDescription($description)
- {
- $this->description = $description;
- return $this;
- }
- /**
- * Get description
- *
- * @return string
- */
- public function getDescription()
- {
- return $this->description;
- }
- /**
- * Set pictureUri
- *
- * @param string $pictureUri
- * @return Groups
- */
- public function setPictureUri($pictureUri)
- {
- $this->pictureUri = $pictureUri;
- return $this;
- }
- /**
- * Get pictureUri
- *
- * @return string
- */
- public function getPictureUri()
- {
- return $this->pictureUri;
- }
- /**
- * Set url
- *
- * @param string $url
- * @return Groups
- */
- public function setUrl($url)
- {
- $this->url = $url;
- return $this;
- }
- /**
- * Get url
- *
- * @return string
- */
- public function getUrl()
- {
- return $this->url;
- }
- /**
- * Set visibility
- *
- * @param integer $visibility
- * @return Groups
- */
- public function setVisibility($visibility)
- {
- $this->visibility = $visibility;
- return $this;
- }
- /**
- * Get visibility
- *
- * @return integer
- */
- public function getVisibility()
- {
- return $this->visibility;
- }
- /**
- * Set updatedOn
- *
- * @param string $updatedOn
- * @return Groups
- */
- public function setUpdatedOn($updatedOn)
- {
- $this->updatedOn = $updatedOn;
- return $this;
- }
- /**
- * Get updatedOn
- *
- * @return string
- */
- public function getUpdatedOn()
- {
- return $this->updatedOn;
- }
- /**
- * Set createdOn
- *
- * @param string $createdOn
- * @return Groups
- */
- public function setCreatedOn($createdOn)
- {
- $this->createdOn = $createdOn;
- return $this;
- }
- /**
- * Get createdOn
- *
- * @return string
- */
- public function getCreatedOn()
- {
- return $this->createdOn;
- }
- }
|