UserEventOapiVo.php 322 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 打卡事件列表
  4. * @author auto create
  5. */
  6. class UserEventOapiVo
  7. {
  8. /**
  9. * 打卡业务实例id
  10. **/
  11. public $biz_inst_id;
  12. /**
  13. * 打卡事件外部id,唯一键
  14. **/
  15. public $event_id;
  16. /**
  17. * 打卡事件名称
  18. **/
  19. public $event_name;
  20. /**
  21. * 员工id
  22. **/
  23. public $userid;
  24. }
  25. ?>