NoticeModel.php 939 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LARAVEL8.0 框架 [ LARAVEL ][ RXThinkCMF ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2017~2021 LARAVEL研发中心
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://www.laravel.cn
  8. // +----------------------------------------------------------------------
  9. // | Author: laravel开发员 <laravel.qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace App\Models;
  12. /**
  13. * 通知公告-模型
  14. * @author laravel开发员
  15. * @since 2020/11/11
  16. * Class NoticeModel
  17. * @package App\Models
  18. */
  19. class NoticeModel extends BaseModel
  20. {
  21. // 设置数据表
  22. protected $table = 'notice';
  23. protected function serializeDate(\DateTimeInterface $date): string
  24. {
  25. return $date->format('Y-m-d H:i:s');
  26. }
  27. }