123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * 系统自动生成
- * @author auto create
- */
- class TopClearScheduleParam
- {
-
- /**
- * 开始时间
- **/
- public $from_date;
-
- /**
- * 考勤组id
- **/
- public $group_id;
-
- /**
- * 结束时间
- **/
- public $to_date;
-
- /**
- * 用户userId列表
- **/
- public $user_ids;
- }
- ?>
|