123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * 打卡事件列表
- * @author auto create
- */
- class UserEventOapiVo
- {
-
- /**
- * 打卡业务实例id
- **/
- public $biz_inst_id;
-
- /**
- * 打卡事件外部id,唯一键
- **/
- public $event_id;
-
- /**
- * 打卡事件名称
- **/
- public $event_name;
-
- /**
- * 员工id
- **/
- public $userid;
- }
- ?>
|