RightsInstanceCreateResult.php 395 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * model
  4. * @author auto create
  5. */
  6. class RightsInstanceCreateResult
  7. {
  8. /**
  9. * 创建完成后资金账户可用资金,单位元,保留2位小数
  10. **/
  11. public $available_fee;
  12. /**
  13. * 淘礼金Id
  14. **/
  15. public $rights_id;
  16. /**
  17. * 淘礼金领取Url
  18. **/
  19. public $send_url;
  20. /**
  21. * 投放code【百川商品详情页业务专用】
  22. **/
  23. public $vegas_code;
  24. }
  25. ?>