| 123456789101112131415161718192021222324252627282930 |
- <?php
- // +----------------------------------------------------------------------
- // | LARAVEL8.0 框架 [ LARAVEL ][ RXThinkCMF ]
- // +----------------------------------------------------------------------
- // | 版权所有 2017~2021 LARAVEL研发中心
- // +----------------------------------------------------------------------
- // | 官方网站: http://www.laravel.cn
- // +----------------------------------------------------------------------
- // | Author: laravel开发员 <laravel.qq.com>
- // +----------------------------------------------------------------------
- namespace App\Models;
- /**
- * 通知公告-模型
- * @author laravel开发员
- * @since 2020/11/11
- * Class NoticeModel
- * @package App\Models
- */
- class NoticeModel extends BaseModel
- {
- // 设置数据表
- protected $table = 'notice';
- protected function serializeDate(\DateTimeInterface $date): string
- {
- return $date->format('Y-m-d H:i:s');
- }
- }
|