NoticeLogModel.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace App\Models;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\NoticeLogModel
  6. *
  7. * @property int $id
  8. * @property int $uid
  9. * @property string $title 推送事件
  10. * @property string $notice_type 通知类型
  11. * @property int $read_at 阅读时间
  12. * @property string $content 内容
  13. * @property \Illuminate\Support\Carbon $created_at 创建时间
  14. * @property \Illuminate\Support\Carbon $updated_at 修改时间
  15. * @property int $result 发送结果
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel newModelQuery()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel newQuery()
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel query()
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereContent($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereCreatedAt($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereId($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereNoticeType($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereReadAt($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereResult($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereTitle($value)
  26. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereUid($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\NoticeLogModel whereUpdatedAt($value)
  28. * @mixin \Eloquent
  29. */
  30. class NoticeLogModel extends Model
  31. {
  32. protected $table = 'kdgx_fpdx_notice_logs';
  33. public $dateFormat = 'U';
  34. protected $fillable = ['title', 'uid', 'read_at', 'notice_type', 'content', 'result'];
  35. }