123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- declare(strict_types=1);
- namespace App\Model;
- use Hyperf\DbConnection\Model\Model;
- class JobHunting extends Model
- {
-
- protected ?string $table = 'job_hunting';
-
- protected array $fillable = [
-
- 'id',
- 'imgurl',
- 'cat_arr_id',
- 'name',
- 'sexy',
- 'self_evaluation',
- 'jobtime',
- 'phone',
- 'wx',
- 'birth',
- 'educational',
- 'marriage',
- 'politic',
- 'origin',
- 'language',
- 'level',
- 'industry',
- 'job',
- 'job_name_get',
- 'experience',
- 'company_nature',
- 'salary',
- 'skillList',
- 'slelf_evaluation',
- 'job_experience',
- 'education_experience',
- 'city_arr_id',
- 'city_id',
- 'website_id',
- 'user_id',
- 'catid',
- 'status',
- 'created_at',
- 'updated_at',
- ];
-
- protected array $casts = [];
- }
|