AtScheduleForTopVo.php 649 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * 排班列表
  4. * @author auto create
  5. */
  6. class AtScheduleForTopVo
  7. {
  8. /**
  9. * 审批id,结果集中没有的话表示没有审批单
  10. **/
  11. public $approve_id;
  12. /**
  13. * 打卡类型,Onduty表示上班打卡,OffDuty表示下班打卡
  14. **/
  15. public $check_type;
  16. /**
  17. * 考勤班次id
  18. **/
  19. public $class_id;
  20. /**
  21. * 班次配置id,结果集中没有的话表示使用全局班次配置
  22. **/
  23. public $class_setting_id;
  24. /**
  25. * 考勤组id
  26. **/
  27. public $group_id;
  28. /**
  29. * 打卡时间
  30. **/
  31. public $plan_check_time;
  32. /**
  33. * 排班id
  34. **/
  35. public $plan_id;
  36. /**
  37. * userId
  38. **/
  39. public $userid;
  40. }
  41. ?>