TopCycleScheduleVO.php 312 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 排班周期设置
  4. * @author auto create
  5. */
  6. class TopCycleScheduleVO
  7. {
  8. /**
  9. * 排班周期名称
  10. **/
  11. public $cycle_name;
  12. /**
  13. * 是否删除
  14. **/
  15. public $is_deleted;
  16. /**
  17. * 是否有效
  18. **/
  19. public $is_valid;
  20. /**
  21. * 每天的班次设置
  22. **/
  23. public $item_list;
  24. }
  25. ?>