2024-05-24 07:55:55 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2024-05-27 08:03:31 +00:00
|
|
|
/**
|
|
|
|
* @property int $notice_id
|
|
|
|
* @property int $notice_type
|
|
|
|
* @property string $raw_content
|
|
|
|
* @property int $state
|
|
|
|
* @property string $created_at
|
|
|
|
* @property string $updated_at
|
|
|
|
*/
|
2024-05-25 14:06:58 +00:00
|
|
|
class Notice extends Base
|
2024-05-24 07:55:55 +00:00
|
|
|
{
|
|
|
|
}
|