芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/mctv/lib/Entity/AuditLog.php
. */ namespace Xibo\Entity; use Xibo\Service\LogServiceInterface; use Xibo\Storage\StorageServiceInterface; /** * Class AuditLog * @package Xibo\Entity * * @SWG\Definition() */ class AuditLog implements \JsonSerializable { use EntityTrait; /** * @SWG\Property(description="The Log Id") * @var int */ public $logId; /** * @SWG\Property(description="The Log Date") * @var int */ public $logDate; /** * @SWG\Property(description="The userId of the User that took this action") * @var int */ public $userId; /** * @SWG\Property(description="Message describing the action taken") * @var string */ public $message; /** * @SWG\Property(description="The effected entity") * @var string */ public $entity; /** * @SWG\Property(description="The effected entityId") * @var int */ public $entityId; /** * @SWG\Property(description="A JSON representation of the object after it was changed") * @var string */ public $objectAfter; /** * @SWG\Property(description="The User Name of the User that took this action") * @var string */ public $userName; /** * Entity constructor. * @param StorageServiceInterface $store * @param LogServiceInterface $log */ public function __construct($store, $log) { $this->setCommonDependencies($store, $log); } }