ArticleLookModel.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\ArticleLookModel
  6. *
  7. * @property int $id
  8. * @property int $uid
  9. * @property int $looked_at
  10. * @property \Illuminate\Support\Carbon $created_at
  11. * @property \Illuminate\Support\Carbon $updated_at
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleLookModel newModelQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleLookModel newQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleLookModel query()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleLookModel whereCreatedAt($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleLookModel whereId($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleLookModel whereLookedAt($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleLookModel whereUid($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ArticleLookModel whereUpdatedAt($value)
  20. * @mixin \Eloquent
  21. */
  22. class ArticleLookModel extends Model
  23. {
  24. //
  25. protected $table = 'kdgx_fpdx_article_looks';
  26. protected $dateFormat = 'U';
  27. protected $fillable = ['uid', 'looked_at'];
  28. }