TopSimpleGroupVO.php 714 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /**
  3. * demo
  4. * @author auto create
  5. */
  6. class TopSimpleGroupVO
  7. {
  8. /**
  9. * 考勤地址
  10. **/
  11. public $address_list;
  12. /**
  13. * 排班周期设置
  14. **/
  15. public $cycle_schedules;
  16. /**
  17. * id
  18. **/
  19. public $id;
  20. /**
  21. * 考勤组管理员
  22. **/
  23. public $manager_list;
  24. /**
  25. * 人员人数
  26. **/
  27. public $member_count;
  28. /**
  29. * 名称
  30. **/
  31. public $name;
  32. /**
  33. * 考勤组主负责人 id
  34. **/
  35. public $owner_user_id;
  36. /**
  37. * 考勤组关联的班次列表
  38. **/
  39. public $shift_ids;
  40. /**
  41. * 固定值,轮班制
  42. **/
  43. public $type;
  44. /**
  45. * 跳转链接
  46. **/
  47. public $url;
  48. /**
  49. * wifi名称
  50. **/
  51. public $wifis;
  52. /**
  53. * 工作日
  54. **/
  55. public $work_day_list;
  56. }
  57. ?>