You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
224 lines
4.1 KiB
224 lines
4.1 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\CoreBundle\Entity;
|
|
|
|
use DateTime;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Gedmo\Mapping\Annotation as Gedmo;
|
|
|
|
/**
|
|
* Ticket messages.
|
|
*
|
|
* @ORM\Table(name="ticket_message")
|
|
* @ORM\Entity
|
|
*/
|
|
class TicketMessage
|
|
{
|
|
/**
|
|
* @ORM\Column(name="id", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue
|
|
*/
|
|
protected int $id;
|
|
|
|
/**
|
|
* @ORM\Column(name="subject", type="string", length=255, nullable=false)
|
|
*/
|
|
protected string $subject;
|
|
|
|
/**
|
|
* @ORM\Column(name="message", type="text", nullable=true)
|
|
*/
|
|
protected ?string $message = null;
|
|
|
|
/**
|
|
* @ORM\Column(name="status", type="string", nullable=false)
|
|
*/
|
|
protected string $status;
|
|
|
|
/**
|
|
* @ORM\Column(name="ip_address", type="string", nullable=false)
|
|
*/
|
|
protected string $ipAddress;
|
|
|
|
/**
|
|
* @ORM\ManyToOne(targetEntity="Chamilo\CoreBundle\Entity\Ticket")
|
|
* @ORM\JoinColumn(name="ticket_id", referencedColumnName="id")
|
|
*/
|
|
protected Ticket $ticket;
|
|
|
|
/**
|
|
* @ORM\Column(name="sys_insert_user_id", type="integer")
|
|
*/
|
|
protected int $insertUserId;
|
|
|
|
/**
|
|
* @ORM\Column(name="sys_lastedit_user_id", type="integer", nullable=true, unique=false)
|
|
*/
|
|
protected ?int $lastEditUserId = null;
|
|
|
|
/**
|
|
* @Gedmo\Timestampable(on="create")
|
|
* @ORM\Column(name="sys_insert_datetime", type="datetime")
|
|
*/
|
|
protected DateTime $insertDateTime;
|
|
|
|
/**
|
|
* @Gedmo\Timestampable(on="update")
|
|
* @ORM\Column(name="sys_lastedit_datetime", type="datetime", nullable=true, unique=false)
|
|
*/
|
|
protected ?DateTime $lastEditDateTime = null;
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getSubject()
|
|
{
|
|
return $this->subject;
|
|
}
|
|
|
|
public function setSubject(string $subject): self
|
|
{
|
|
$this->subject = $subject;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getMessage()
|
|
{
|
|
return $this->message;
|
|
}
|
|
|
|
public function setMessage(string $message): self
|
|
{
|
|
$this->message = $message;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getStatus()
|
|
{
|
|
return $this->status;
|
|
}
|
|
|
|
public function setStatus(string $status): self
|
|
{
|
|
$this->status = $status;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getIpAddress()
|
|
{
|
|
return $this->ipAddress;
|
|
}
|
|
|
|
public function setIpAddress(string $ipAddress): self
|
|
{
|
|
$this->ipAddress = $ipAddress;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Ticket
|
|
*/
|
|
public function getTicket()
|
|
{
|
|
return $this->ticket;
|
|
}
|
|
|
|
public function setTicket(Ticket $ticket): self
|
|
{
|
|
$this->ticket = $ticket;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getInsertUserId()
|
|
{
|
|
return $this->insertUserId;
|
|
}
|
|
|
|
/**
|
|
* @return TicketMessage
|
|
*/
|
|
public function setInsertUserId(int $insertUserId)
|
|
{
|
|
$this->insertUserId = $insertUserId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return DateTime
|
|
*/
|
|
public function getInsertDateTime()
|
|
{
|
|
return $this->insertDateTime;
|
|
}
|
|
|
|
public function setInsertDateTime(DateTime $insertDateTime): self
|
|
{
|
|
$this->insertDateTime = $insertDateTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getLastEditUserId()
|
|
{
|
|
return $this->lastEditUserId;
|
|
}
|
|
|
|
/**
|
|
* @return TicketMessage
|
|
*/
|
|
public function setLastEditUserId(int $lastEditUserId)
|
|
{
|
|
$this->lastEditUserId = $lastEditUserId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return DateTime
|
|
*/
|
|
public function getLastEditDateTime()
|
|
{
|
|
return $this->lastEditDateTime;
|
|
}
|
|
|
|
public function setLastEditDateTime(DateTime $lastEditDateTime): self
|
|
{
|
|
$this->lastEditDateTime = $lastEditDateTime;
|
|
|
|
return $this;
|
|
}
|
|
}
|
|
|