1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * demo
- * @author auto create
- */
- class TopScheduleVo
- {
-
- /**
- * 审批单id
- **/
- public $approve_id;
-
- /**
- * 考勤类型,上班/下班
- **/
- public $check_type;
-
- /**
- * 考勤组id
- **/
- public $group_id;
-
- /**
- * id
- **/
- public $id;
-
- /**
- * 是否休息
- **/
- public $is_rest;
-
- /**
- * 加班规则设置id
- **/
- public $overtime_setting_id;
-
- /**
- * 计划打卡时间
- **/
- public $plan_check_time;
-
- /**
- * 班次版本
- **/
- public $shift_id;
-
- /**
- * 班次id
- **/
- public $shift_version;
-
- /**
- * 用户userId
- **/
- public $userid;
-
- /**
- * 工作天
- **/
- public $work_date;
- }
- ?>
|