AddSubAccountReq.php 256 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 添加子账号入参
  4. * @author auto create
  5. */
  6. class AddSubAccountReq
  7. {
  8. /**
  9. * 主账号id
  10. **/
  11. public $adminaccount_id;
  12. /**
  13. * 业务方channel
  14. **/
  15. public $channel;
  16. /**
  17. * 子账号id
  18. **/
  19. public $subaccount_id;
  20. }
  21. ?>