Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/src/CoreBundle/Entity/TicketAssignedLog.php

48 lines
1.0 KiB

<?php
declare(strict_types=1);
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use DateTime;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(
* name="ticket_assigned_log",
* )
* @ORM\Entity
*/
class TicketAssignedLog
{
/**
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue
*/
protected int $id;
/**
* @ORM\ManyToOne(targetEntity="Chamilo\CoreBundle\Entity\Ticket")
* @ORM\JoinColumn(name="ticket_id", referencedColumnName="id", onDelete="CASCADE")
*/
protected Ticket $ticket;
/**
* @ORM\ManyToOne(targetEntity="Chamilo\CoreBundle\Entity\User")
* @ORM\JoinColumn(name="user_id", referencedColumnName="id")
*/
protected User $user;
/**
* @ORM\Column(name="sys_insert_user_id", type="integer", nullable=false)
*/
protected int $insertUserId;
/**
* @ORM\Column(name="assigned_date", type="datetime", nullable=false)
*/
protected DateTime $assignedDate;
}