UserEventOapiRequestVo.php 221 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 打卡事件参数模型
  4. * @author auto create
  5. */
  6. class UserEventOapiRequestVo
  7. {
  8. /**
  9. * 打卡业务代码
  10. **/
  11. public $biz_code;
  12. /**
  13. * 打卡事件列表
  14. **/
  15. public $user_event_list;
  16. }
  17. ?>