initial commit
This commit is contained in:
36
src/Model/Entity/Notification.php
Normal file
36
src/Model/Entity/Notification.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user