TopJobStatisticsVo.php 783 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * 职位信息列表
  4. * @author auto create
  5. */
  6. class TopJobStatisticsVo
  7. {
  8. /**
  9. * 招聘业务标识
  10. **/
  11. public $biz_code;
  12. /**
  13. * 企业id
  14. **/
  15. public $corp_id;
  16. /**
  17. * 职位创建人id
  18. **/
  19. public $creator_userid;
  20. /**
  21. * 创建时间,unix时间戳,单位毫秒
  22. **/
  23. public $gmt_create_mils;
  24. /**
  25. * 更新时间,unix时间戳,单位毫秒
  26. **/
  27. public $gmt_modified_mils;
  28. /**
  29. * 招聘人数
  30. **/
  31. public $head_count;
  32. /**
  33. * 职位id
  34. **/
  35. public $job_id;
  36. /**
  37. * 职位归属部门id
  38. **/
  39. public $main_dept_id;
  40. /**
  41. * 职位名称
  42. **/
  43. public $name;
  44. /**
  45. * 职位负责人id
  46. **/
  47. public $owner_userid;
  48. /**
  49. * 0:新创建 1:已发布 2:废弃 3:招满
  50. **/
  51. public $status;
  52. }
  53. ?>