TopScheduleVo.php 653 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * demo
  4. * @author auto create
  5. */
  6. class TopScheduleVo
  7. {
  8. /**
  9. * 审批单id
  10. **/
  11. public $approve_id;
  12. /**
  13. * 考勤类型,上班/下班
  14. **/
  15. public $check_type;
  16. /**
  17. * 考勤组id
  18. **/
  19. public $group_id;
  20. /**
  21. * id
  22. **/
  23. public $id;
  24. /**
  25. * 是否休息
  26. **/
  27. public $is_rest;
  28. /**
  29. * 加班规则设置id
  30. **/
  31. public $overtime_setting_id;
  32. /**
  33. * 计划打卡时间
  34. **/
  35. public $plan_check_time;
  36. /**
  37. * 班次版本
  38. **/
  39. public $shift_id;
  40. /**
  41. * 班次id
  42. **/
  43. public $shift_version;
  44. /**
  45. * 用户userId
  46. **/
  47. public $userid;
  48. /**
  49. * 工作天
  50. **/
  51. public $work_date;
  52. }
  53. ?>