16 lines
247 B
PHP
16 lines
247 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* @property int $notice_id
|
|
* @property int $notice_type
|
|
* @property string $raw_content
|
|
* @property int $state
|
|
* @property string $created_at
|
|
* @property string $updated_at
|
|
*/
|
|
class Notice extends Base
|
|
{
|
|
}
|