SyncShOrderReq.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. namespace UnionOpenFftlOrderSync;
  3. class SyncShOrderReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.cid.SyncShOrderReq";
  7. }
  8. private $bizType;
  9. public function setBizType($bizType){
  10. $this->params['bizType'] = $bizType;
  11. }
  12. public function getBizType(){
  13. return $this->bizType;
  14. }
  15. private $sceneType;
  16. public function setSceneType($sceneType){
  17. $this->params['sceneType'] = $sceneType;
  18. }
  19. public function getSceneType(){
  20. return $this->sceneType;
  21. }
  22. private $requestId;
  23. public function setRequestId($requestId){
  24. $this->params['requestId'] = $requestId;
  25. }
  26. public function getRequestId(){
  27. return $this->requestId;
  28. }
  29. private $accountId;
  30. public function setAccountId($accountId){
  31. $this->params['accountId'] = $accountId;
  32. }
  33. public function getAccountId(){
  34. return $this->accountId;
  35. }
  36. private $eventType;
  37. public function setEventType($eventType){
  38. $this->params['eventType'] = $eventType;
  39. }
  40. public function getEventType(){
  41. return $this->eventType;
  42. }
  43. private $eventTime;
  44. public function setEventTime($eventTime){
  45. $this->params['eventTime'] = $eventTime;
  46. }
  47. public function getEventTime(){
  48. return $this->eventTime;
  49. }
  50. private $jdEventType;
  51. public function setJdEventType($jdEventType){
  52. $this->params['jdEventType'] = $jdEventType;
  53. }
  54. public function getJdEventType(){
  55. return $this->jdEventType;
  56. }
  57. private $jdEventTime;
  58. public function setJdEventTime($jdEventTime){
  59. $this->params['jdEventTime'] = $jdEventTime;
  60. }
  61. public function getJdEventTime(){
  62. return $this->jdEventTime;
  63. }
  64. private $orderId;
  65. public function setOrderId($orderId){
  66. $this->params['orderId'] = $orderId;
  67. }
  68. public function getOrderId(){
  69. return $this->orderId;
  70. }
  71. private $callback;
  72. public function setCallback($callback){
  73. $this->params['callback'] = $callback;
  74. }
  75. public function getCallback(){
  76. return $this->callback;
  77. }
  78. private $payAmount;
  79. public function setPayAmount($payAmount){
  80. $this->params['payAmount'] = $payAmount;
  81. }
  82. public function getPayAmount(){
  83. return $this->payAmount;
  84. }
  85. private $skuId;
  86. public function setSkuId($skuId){
  87. $this->params['skuId'] = $skuId;
  88. }
  89. public function getSkuId(){
  90. return $this->skuId;
  91. }
  92. private $shopId;
  93. public function setShopId($shopId){
  94. $this->params['shopId'] = $shopId;
  95. }
  96. public function getShopId(){
  97. return $this->shopId;
  98. }
  99. private $orderPlatform;
  100. public function setOrderPlatform($orderPlatform){
  101. $this->params['orderPlatform'] = $orderPlatform;
  102. }
  103. public function getOrderPlatform(){
  104. return $this->orderPlatform;
  105. }
  106. private $extInfo;
  107. public function setExtInfo($extInfo){
  108. $this->params['extInfo'] = $extInfo;
  109. }
  110. public function getExtInfo(){
  111. return $this->extInfo;
  112. }
  113. function getInstance(){
  114. return $this->params;
  115. }
  116. }
  117. ?>