SchoolRankModel.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace App\Models\Appearance;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Appearance\SchoolRankModel
  6. *
  7. * @property int $id
  8. * @property string $type 榜单类型
  9. * @property string $date 日期
  10. * @property string $province 省
  11. * @property string $city 城市
  12. * @property string $school 学校
  13. * @property int $count 投票数
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel newModelQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel newQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel query()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel whereCity($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel whereCount($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel whereDate($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel whereId($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel whereProvince($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel whereSchool($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Appearance\SchoolRankModel whereType($value)
  24. * @mixin \Eloquent
  25. */
  26. class SchoolRankModel extends Model
  27. {
  28. //
  29. protected $table = 'fpdx_appearance_school_ranks';
  30. public $timestamps = false;
  31. protected $fillable = ['type', 'province', 'city', 'count', 'date', 'school'];
  32. }