优惠券订单及其他脚本

RpcResult.php 367B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 查询的对象
  4. * @author auto create
  5. */
  6. class RpcResult
  7. {
  8. /**
  9. * 业务出错的状态码
  10. **/
  11. public $biz_error_code;
  12. /**
  13. * 业务出错的描述
  14. **/
  15. public $biz_error_desc;
  16. /**
  17. * 结果
  18. **/
  19. public $data;
  20. /**
  21. * 执行结果状态码
  22. **/
  23. public $result_code;
  24. /**
  25. * 执行结果
  26. **/
  27. public $result_msg;
  28. }
  29. ?>