AtTimeVo.php 371 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 时间段列表
  4. * @author auto create
  5. */
  6. class AtTimeVo
  7. {
  8. /**
  9. * 是否跨天
  10. **/
  11. public $across;
  12. /**
  13. * 允许开始分钟
  14. **/
  15. public $begin_min;
  16. /**
  17. * 打卡时间
  18. **/
  19. public $check_time;
  20. /**
  21. * 打卡类型枚举(Onduty和OffDuty)
  22. **/
  23. public $check_type;
  24. /**
  25. * 允许结束分钟
  26. **/
  27. public $end_min;
  28. }
  29. ?>