src/CoreBundle/Entity/Room.php
<?php
declare(strict_types=1);
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* Room.
*/
#[ORM\Table(name: 'room')]
#[ORM\Entity]
class Room
{
#[ORM\Column(name: 'id', type: 'integer')]
#[ORM\Id]
#[ORM\GeneratedValue]
protected ?int $id = null;
#[Assert\NotBlank]
#[ORM\Column(name: 'title', type: 'string', length: 255)]
protected string $title;
#[ORM\Column(name: 'description', type: 'text', nullable: true)]
protected ?string $description = null;
#[ORM\Column(name: 'geolocation', type: 'string', length: 255, nullable: true, unique: false)]
protected ?string $geolocation = null;
#[ORM\Column(name: 'ip', type: 'string', length: 45, nullable: true, unique: false)]
protected ?string $ip = null;
#[ORM\Column(name: 'ip_mask', type: 'string', length: 6, nullable: true, unique: false)]
protected ?string $ipMask = null;
#[ORM\ManyToOne(targetEntity: BranchSync::class)]
#[ORM\JoinColumn(name: 'branch_id', referencedColumnName: 'id')]
protected BranchSync $branch;
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
public function setTitle(string $title): self
{
$this->title = $title;
return $this;
}
/**
* Get title.
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
public function setDescription(string $description): self
{
$this->description = $description;
return $this;
}
/**
* @return string
*/
public function getGeolocation()
{
return $this->geolocation;
}
public function setGeolocation(string $geolocation): self
{
$this->geolocation = $geolocation;
return $this;
}
/**
* @return string
*/
public function getIp()
{
return $this->ip;
}
public function setIp(string $ip): self
{
$this->ip = $ip;
return $this;
}
/**
* @return string
*/
public function getIpMask()
{
return $this->ipMask;
}
public function setIpMask(string $ipMask): self
{
$this->ipMask = $ipMask;
return $this;
}
/**
* @return BranchSync
*/
public function getBranch()
{
return $this->branch;
}
public function setBranch(BranchSync $branch): self
{
$this->branch = $branch;
return $this;
}
}