SchoolModel.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Models\Common;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Common\SchoolModel
  6. *
  7. * @property int $id
  8. * @property string $province 省市
  9. * @property string $city 城市
  10. * @property string $school 学校名称
  11. * @property int $education 0未知1专科以下2专科3本科4成人大学
  12. * @property string $type 院校类型
  13. * @property int $number 人数
  14. * @property int $create_time 创建时间
  15. * @property int $update_time 修改时间
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel newModelQuery()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel newQuery()
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel query()
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereCity($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereCreateTime($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereEducation($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereId($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereNumber($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereProvince($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereSchool($value)
  26. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereType($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\SchoolModel whereUpdateTime($value)
  28. * @mixin \Eloquent
  29. */
  30. class SchoolModel extends Model
  31. {
  32. protected $table = "school";
  33. }