SetionTimeVO.php 269 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 时间段列表
  4. * @author auto create
  5. */
  6. class SetionTimeVO
  7. {
  8. /**
  9. * 打卡时间跨度
  10. **/
  11. public $across;
  12. /**
  13. * 打卡时间
  14. **/
  15. public $check_time;
  16. /**
  17. * 打卡类型枚举(Onduty和OffDuty)
  18. **/
  19. public $check_type;
  20. }
  21. ?>