EmpList.php 709 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * 员工列表
  4. * @author auto create
  5. */
  6. class EmpList
  7. {
  8. /**
  9. * 部门邮箱
  10. **/
  11. public $bu_mail;
  12. /**
  13. * BUC员工ID
  14. **/
  15. public $buc_id;
  16. /**
  17. * 离职日期
  18. **/
  19. public $departure_date;
  20. /**
  21. * 钉钉全局员工ID
  22. **/
  23. public $dingtalk_no;
  24. /**
  25. * 企业下员工id
  26. **/
  27. public $dingtalk_user_id;
  28. /**
  29. * 入职日期
  30. **/
  31. public $hire_date;
  32. /**
  33. * 头像地址
  34. **/
  35. public $img_url;
  36. /**
  37. * 职位
  38. **/
  39. public $job;
  40. /**
  41. * 姓名
  42. **/
  43. public $name;
  44. /**
  45. * 状态
  46. **/
  47. public $status;
  48. /**
  49. * uicId
  50. **/
  51. public $uic_id;
  52. /**
  53. * 工号
  54. **/
  55. public $work_no;
  56. /**
  57. * 在岗状态
  58. **/
  59. public $work_status;
  60. }
  61. ?>