123456789101112131415161718192021222324 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class CompanyTalentNeed extends Model
- {
- use SoftDeletes;
- protected $table = 'company_talent_need';
- protected $guarded = [];
- public static $type = [1 => '专家、高层次人才', '经营管理人才', '专业技术人才', '高技能人才', '其他人才'];
- public static $cooperation = [1 => '项目合作', '技术咨询', '培育队伍', '其他'];
- public static $manager_level = [1=>'高层','中层','低层'];
- public static $manager_qualification = [1=>'工作经验','职业经理人证书','其他'];
- public static $manager_education = [1=>'博士','硕士','本科','其他'];
- public static $technology_level = [1=>'高级','中级','低级'];
- public static $technology_education = [1=>'博士','硕士','本科','其他'];
- public static $skill_level = [1=>'高级技师','技师','高级技工'];
- }
|