AtsAddJobParam.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /**
  3. * 职位列表,单次最多20个
  4. * @author auto create
  5. */
  6. class AtsAddJobParam
  7. {
  8. /**
  9. * 工作地点
  10. **/
  11. public $address;
  12. /**
  13. * 是否校招
  14. **/
  15. public $campus;
  16. /**
  17. * 城市编码
  18. **/
  19. public $city;
  20. /**
  21. * 操作人员工标识
  22. **/
  23. public $creator_user_id;
  24. /**
  25. * 职位描述
  26. **/
  27. public $description;
  28. /**
  29. * 区县编码
  30. **/
  31. public $district;
  32. /**
  33. * 扩展数据
  34. **/
  35. public $ext_data;
  36. /**
  37. * 职位性质,FULL-TIME:全职,PART-TIME:兼职,INTERNSHIP:实习,OTHER:其他
  38. **/
  39. public $job_nature;
  40. /**
  41. * 最低月薪,单位:元
  42. **/
  43. public $max_salary;
  44. /**
  45. * 最高月薪,单位:元
  46. **/
  47. public $min_salary;
  48. /**
  49. * 职位名称
  50. **/
  51. public $name;
  52. /**
  53. * 职位负责人的员工标识列表
  54. **/
  55. public $owner_user_ids;
  56. /**
  57. * 省域编码
  58. **/
  59. public $province;
  60. /**
  61. * 学历要求,1小学 2初中 3高中 4中专 5大专 6本科 7硕士 8 博士 9其他
  62. **/
  63. public $required_edu;
  64. }
  65. ?>