37 lines
877 B
PHP
37 lines
877 B
PHP
<?php
|
|
namespace App\Model\Entity;
|
|
|
|
use Cake\ORM\Entity;
|
|
|
|
/**
|
|
* Notification Entity
|
|
*
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property string $from_message
|
|
* @property \Cake\I18n\Time $from_datetime
|
|
* @property string $to_message
|
|
* @property \Cake\I18n\Time $to_datetime
|
|
* @property int $is_replied
|
|
* @property string $ip
|
|
*
|
|
* @property \App\Model\Entity\User $user
|
|
*/
|
|
class Notification extends Entity
|
|
{
|
|
|
|
/**
|
|
* Fields that can be mass assigned using newEntity() or patchEntity().
|
|
*
|
|
* Note that when '*' is set to true, this allows all unspecified fields to
|
|
* be mass assigned. For security purposes, it is advised to set '*' to false
|
|
* (or remove it), and explicitly make individual fields accessible as needed.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $_accessible = [
|
|
'*' => true,
|
|
'id' => false
|
|
];
|
|
}
|