jobHunting.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Model;
  4. use Hyperf\DbConnection\Model\Model;
  5. /**
  6. */
  7. class JobHunting extends Model
  8. {
  9. /**
  10. * The table associated with the model.
  11. */
  12. protected ?string $table = 'job_hunting';
  13. /**
  14. * The attributes that are mass assignable.
  15. */
  16. protected array $fillable = [
  17. // 其他可填充字段
  18. 'id',
  19. 'imgurl',
  20. 'cat_arr_id',
  21. 'name',
  22. 'sexy',
  23. 'self_evaluation',
  24. 'jobtime',
  25. 'phone',
  26. 'wx',
  27. 'birth',
  28. 'educational',
  29. 'marriage',
  30. 'politic',
  31. 'origin',
  32. 'language',
  33. 'level',
  34. 'industry',
  35. 'job',
  36. 'job_name_get',
  37. 'experience',
  38. 'company_nature',
  39. 'salary',
  40. 'skillList',
  41. 'slelf_evaluation',
  42. 'job_experience',
  43. 'education_experience',
  44. 'city_arr_id',
  45. 'city_id',
  46. 'website_id',
  47. 'user_id',
  48. 'catid',
  49. 'status',
  50. 'created_at',
  51. 'updated_at',
  52. ];
  53. /**
  54. * The attributes that should be cast to native types.
  55. */
  56. protected array $casts = [];
  57. }