CompanyTalentNeed.php 975 B

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