SyncCidOrderReq.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. namespace UnionOpenCidOrderSync;
  3. class SyncCidOrderReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.cid.SyncCidOrderReq";
  7. }
  8. private $sceneType;
  9. public function setSceneType($sceneType){
  10. $this->params['sceneType'] = $sceneType;
  11. }
  12. public function getSceneType(){
  13. return $this->sceneType;
  14. }
  15. private $eventType;
  16. public function setEventType($eventType){
  17. $this->params['eventType'] = $eventType;
  18. }
  19. public function getEventType(){
  20. return $this->eventType;
  21. }
  22. private $eventTime;
  23. public function setEventTime($eventTime){
  24. $this->params['eventTime'] = $eventTime;
  25. }
  26. public function getEventTime(){
  27. return $this->eventTime;
  28. }
  29. private $requestId;
  30. public function setRequestId($requestId){
  31. $this->params['requestId'] = $requestId;
  32. }
  33. public function getRequestId(){
  34. return $this->requestId;
  35. }
  36. private $orderId;
  37. public function setOrderId($orderId){
  38. $this->params['orderId'] = $orderId;
  39. }
  40. public function getOrderId(){
  41. return $this->orderId;
  42. }
  43. private $id;
  44. public function setId($id){
  45. $this->params['id'] = $id;
  46. }
  47. public function getId(){
  48. return $this->id;
  49. }
  50. private $cosPrice;
  51. public function setCosPrice($cosPrice){
  52. $this->params['cosPrice'] = $cosPrice;
  53. }
  54. public function getCosPrice(){
  55. return $this->cosPrice;
  56. }
  57. private $skuId;
  58. public function setSkuId($skuId){
  59. $this->params['skuId'] = $skuId;
  60. }
  61. public function getSkuId(){
  62. return $this->skuId;
  63. }
  64. private $skuName;
  65. public function setSkuName($skuName){
  66. $this->params['skuName'] = $skuName;
  67. }
  68. public function getSkuName(){
  69. return $this->skuName;
  70. }
  71. private $shopId;
  72. public function setShopId($shopId){
  73. $this->params['shopId'] = $shopId;
  74. }
  75. public function getShopId(){
  76. return $this->shopId;
  77. }
  78. private $orderPlatform;
  79. public function setOrderPlatform($orderPlatform){
  80. $this->params['orderPlatform'] = $orderPlatform;
  81. }
  82. public function getOrderPlatform(){
  83. return $this->orderPlatform;
  84. }
  85. function getInstance(){
  86. return $this->params;
  87. }
  88. }
  89. ?>