TopClearScheduleParam.php 300 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 系统自动生成
  4. * @author auto create
  5. */
  6. class TopClearScheduleParam
  7. {
  8. /**
  9. * 开始时间
  10. **/
  11. public $from_date;
  12. /**
  13. * 考勤组id
  14. **/
  15. public $group_id;
  16. /**
  17. * 结束时间
  18. **/
  19. public $to_date;
  20. /**
  21. * 用户userId列表
  22. **/
  23. public $user_ids;
  24. }
  25. ?>