Passed
Push — v6 ( f71c30...fe03e1 )
by 光春
04:16
created
src/service/pinduoduo/bin/src/Api/Request/PddGoodsChildSkuEditRequest.php 1 patch
Indentation   +154 added lines, -154 removed lines patch added patch discarded remove patch
@@ -7,171 +7,171 @@
 block discarded – undo
7 7
 class PddGoodsChildSkuEditRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Long, "goods_commit_id")
15
-	*/
16
-	private $goodsCommitId;
17
-
18
-	/**
19
-	* @JsonProperty(Long, "goods_id")
20
-	*/
21
-	private $goodsId;
22
-
23
-	/**
24
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddGoodsChildSkuEditRequest_SkusItem>, "skus")
25
-	*/
26
-	private $skus;
27
-
28
-	/**
29
-	* @JsonProperty(Integer, "sync_goods_operate")
30
-	*/
31
-	private $syncGoodsOperate;
32
-
33
-	protected function setUserParams(&$params)
34
-	{
35
-		$this->setUserParam($params, "goods_commit_id", $this->goodsCommitId);
36
-		$this->setUserParam($params, "goods_id", $this->goodsId);
37
-		$this->setUserParam($params, "skus", $this->skus);
38
-		$this->setUserParam($params, "sync_goods_operate", $this->syncGoodsOperate);
39
-
40
-	}
41
-
42
-	public function getVersion()
43
-	{
44
-		return "V1";
45
-	}
46
-
47
-	public function getDataType()
48
-	{
49
-		return "JSON";
50
-	}
51
-
52
-	public function getType()
53
-	{
54
-		return "pdd.goods.child.sku.edit";
55
-	}
56
-
57
-	public function setGoodsCommitId($goodsCommitId)
58
-	{
59
-		$this->goodsCommitId = $goodsCommitId;
60
-	}
61
-
62
-	public function setGoodsId($goodsId)
63
-	{
64
-		$this->goodsId = $goodsId;
65
-	}
66
-
67
-	public function setSkus($skus)
68
-	{
69
-		$this->skus = $skus;
70
-	}
71
-
72
-	public function setSyncGoodsOperate($syncGoodsOperate)
73
-	{
74
-		$this->syncGoodsOperate = $syncGoodsOperate;
75
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Long, "goods_commit_id")
15
+     */
16
+    private $goodsCommitId;
17
+
18
+    /**
19
+     * @JsonProperty(Long, "goods_id")
20
+     */
21
+    private $goodsId;
22
+
23
+    /**
24
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddGoodsChildSkuEditRequest_SkusItem>, "skus")
25
+     */
26
+    private $skus;
27
+
28
+    /**
29
+     * @JsonProperty(Integer, "sync_goods_operate")
30
+     */
31
+    private $syncGoodsOperate;
32
+
33
+    protected function setUserParams(&$params)
34
+    {
35
+        $this->setUserParam($params, "goods_commit_id", $this->goodsCommitId);
36
+        $this->setUserParam($params, "goods_id", $this->goodsId);
37
+        $this->setUserParam($params, "skus", $this->skus);
38
+        $this->setUserParam($params, "sync_goods_operate", $this->syncGoodsOperate);
39
+
40
+    }
41
+
42
+    public function getVersion()
43
+    {
44
+        return "V1";
45
+    }
46
+
47
+    public function getDataType()
48
+    {
49
+        return "JSON";
50
+    }
51
+
52
+    public function getType()
53
+    {
54
+        return "pdd.goods.child.sku.edit";
55
+    }
56
+
57
+    public function setGoodsCommitId($goodsCommitId)
58
+    {
59
+        $this->goodsCommitId = $goodsCommitId;
60
+    }
61
+
62
+    public function setGoodsId($goodsId)
63
+    {
64
+        $this->goodsId = $goodsId;
65
+    }
66
+
67
+    public function setSkus($skus)
68
+    {
69
+        $this->skus = $skus;
70
+    }
71
+
72
+    public function setSyncGoodsOperate($syncGoodsOperate)
73
+    {
74
+        $this->syncGoodsOperate = $syncGoodsOperate;
75
+    }
76 76
 
77 77
 }
78 78
 
79 79
 class PddGoodsChildSkuEditRequest_SkusItem extends PopBaseJsonEntity
80 80
 {
81 81
 
82
-	public function __construct()
83
-	{
84
-
85
-	}
86
-
87
-	/**
88
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddGoodsChildSkuEditRequest_SkusItemChildSkusItem>, "child_skus")
89
-	*/
90
-	private $childSkus;
91
-
92
-	/**
93
-	* @JsonProperty(Integer, "is_onsale")
94
-	*/
95
-	private $isOnsale;
96
-
97
-	/**
98
-	* @JsonProperty(String, "out_sku_sn")
99
-	*/
100
-	private $outSkuSn;
101
-
102
-	/**
103
-	* @JsonProperty(Long, "sku_id")
104
-	*/
105
-	private $skuId;
106
-
107
-	public function setChildSkus($childSkus)
108
-	{
109
-		$this->childSkus = $childSkus;
110
-	}
111
-
112
-	public function setIsOnsale($isOnsale)
113
-	{
114
-		$this->isOnsale = $isOnsale;
115
-	}
116
-
117
-	public function setOutSkuSn($outSkuSn)
118
-	{
119
-		$this->outSkuSn = $outSkuSn;
120
-	}
121
-
122
-	public function setSkuId($skuId)
123
-	{
124
-		$this->skuId = $skuId;
125
-	}
82
+    public function __construct()
83
+    {
84
+
85
+    }
86
+
87
+    /**
88
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddGoodsChildSkuEditRequest_SkusItemChildSkusItem>, "child_skus")
89
+     */
90
+    private $childSkus;
91
+
92
+    /**
93
+     * @JsonProperty(Integer, "is_onsale")
94
+     */
95
+    private $isOnsale;
96
+
97
+    /**
98
+     * @JsonProperty(String, "out_sku_sn")
99
+     */
100
+    private $outSkuSn;
101
+
102
+    /**
103
+     * @JsonProperty(Long, "sku_id")
104
+     */
105
+    private $skuId;
106
+
107
+    public function setChildSkus($childSkus)
108
+    {
109
+        $this->childSkus = $childSkus;
110
+    }
111
+
112
+    public function setIsOnsale($isOnsale)
113
+    {
114
+        $this->isOnsale = $isOnsale;
115
+    }
116
+
117
+    public function setOutSkuSn($outSkuSn)
118
+    {
119
+        $this->outSkuSn = $outSkuSn;
120
+    }
121
+
122
+    public function setSkuId($skuId)
123
+    {
124
+        $this->skuId = $skuId;
125
+    }
126 126
 
127 127
 }
128 128
 
129 129
 class PddGoodsChildSkuEditRequest_SkusItemChildSkusItem extends PopBaseJsonEntity
130 130
 {
131 131
 
132
-	public function __construct()
133
-	{
134
-
135
-	}
136
-
137
-	/**
138
-	* @JsonProperty(String, "date")
139
-	*/
140
-	private $date;
141
-
142
-	/**
143
-	* @JsonProperty(Long, "group_price")
144
-	*/
145
-	private $groupPrice;
146
-
147
-	/**
148
-	* @JsonProperty(Long, "quantity_delta")
149
-	*/
150
-	private $quantityDelta;
151
-
152
-	/**
153
-	* @JsonProperty(Long, "single_price")
154
-	*/
155
-	private $singlePrice;
156
-
157
-	public function setDate($date)
158
-	{
159
-		$this->date = $date;
160
-	}
161
-
162
-	public function setGroupPrice($groupPrice)
163
-	{
164
-		$this->groupPrice = $groupPrice;
165
-	}
166
-
167
-	public function setQuantityDelta($quantityDelta)
168
-	{
169
-		$this->quantityDelta = $quantityDelta;
170
-	}
171
-
172
-	public function setSinglePrice($singlePrice)
173
-	{
174
-		$this->singlePrice = $singlePrice;
175
-	}
132
+    public function __construct()
133
+    {
134
+
135
+    }
136
+
137
+    /**
138
+     * @JsonProperty(String, "date")
139
+     */
140
+    private $date;
141
+
142
+    /**
143
+     * @JsonProperty(Long, "group_price")
144
+     */
145
+    private $groupPrice;
146
+
147
+    /**
148
+     * @JsonProperty(Long, "quantity_delta")
149
+     */
150
+    private $quantityDelta;
151
+
152
+    /**
153
+     * @JsonProperty(Long, "single_price")
154
+     */
155
+    private $singlePrice;
156
+
157
+    public function setDate($date)
158
+    {
159
+        $this->date = $date;
160
+    }
161
+
162
+    public function setGroupPrice($groupPrice)
163
+    {
164
+        $this->groupPrice = $groupPrice;
165
+    }
166
+
167
+    public function setQuantityDelta($quantityDelta)
168
+    {
169
+        $this->quantityDelta = $quantityDelta;
170
+    }
171
+
172
+    public function setSinglePrice($singlePrice)
173
+    {
174
+        $this->singlePrice = $singlePrice;
175
+    }
176 176
 
177 177
 }
Please login to merge, or discard this patch.
service/pinduoduo/bin/src/Api/Request/PddKttOrderLogisticCreateRequest.php 1 patch
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -7,71 +7,71 @@
 block discarded – undo
7 7
 class PddKttOrderLogisticCreateRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Integer, "logisticsId")
15
-	*/
16
-	private $logisticsId;
17
-
18
-	/**
19
-	* @JsonProperty(String, "logisticsName")
20
-	*/
21
-	private $logisticsName;
22
-
23
-	/**
24
-	* @JsonProperty(String, "orderSn")
25
-	*/
26
-	private $orderSn;
27
-
28
-	/**
29
-	* @JsonProperty(String, "waybillNo")
30
-	*/
31
-	private $waybillNo;
32
-
33
-	protected function setUserParams(&$params)
34
-	{
35
-		$this->setUserParam($params, "logisticsId", $this->logisticsId);
36
-		$this->setUserParam($params, "logisticsName", $this->logisticsName);
37
-		$this->setUserParam($params, "orderSn", $this->orderSn);
38
-		$this->setUserParam($params, "waybillNo", $this->waybillNo);
39
-
40
-	}
41
-
42
-	public function getVersion()
43
-	{
44
-		return "V1";
45
-	}
46
-
47
-	public function getDataType()
48
-	{
49
-		return "JSON";
50
-	}
51
-
52
-	public function getType()
53
-	{
54
-		return "pdd.ktt.order.logistic.create";
55
-	}
56
-
57
-	public function setLogisticsId($logisticsId)
58
-	{
59
-		$this->logisticsId = $logisticsId;
60
-	}
61
-
62
-	public function setLogisticsName($logisticsName)
63
-	{
64
-		$this->logisticsName = $logisticsName;
65
-	}
66
-
67
-	public function setOrderSn($orderSn)
68
-	{
69
-		$this->orderSn = $orderSn;
70
-	}
71
-
72
-	public function setWaybillNo($waybillNo)
73
-	{
74
-		$this->waybillNo = $waybillNo;
75
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Integer, "logisticsId")
15
+     */
16
+    private $logisticsId;
17
+
18
+    /**
19
+     * @JsonProperty(String, "logisticsName")
20
+     */
21
+    private $logisticsName;
22
+
23
+    /**
24
+     * @JsonProperty(String, "orderSn")
25
+     */
26
+    private $orderSn;
27
+
28
+    /**
29
+     * @JsonProperty(String, "waybillNo")
30
+     */
31
+    private $waybillNo;
32
+
33
+    protected function setUserParams(&$params)
34
+    {
35
+        $this->setUserParam($params, "logisticsId", $this->logisticsId);
36
+        $this->setUserParam($params, "logisticsName", $this->logisticsName);
37
+        $this->setUserParam($params, "orderSn", $this->orderSn);
38
+        $this->setUserParam($params, "waybillNo", $this->waybillNo);
39
+
40
+    }
41
+
42
+    public function getVersion()
43
+    {
44
+        return "V1";
45
+    }
46
+
47
+    public function getDataType()
48
+    {
49
+        return "JSON";
50
+    }
51
+
52
+    public function getType()
53
+    {
54
+        return "pdd.ktt.order.logistic.create";
55
+    }
56
+
57
+    public function setLogisticsId($logisticsId)
58
+    {
59
+        $this->logisticsId = $logisticsId;
60
+    }
61
+
62
+    public function setLogisticsName($logisticsName)
63
+    {
64
+        $this->logisticsName = $logisticsName;
65
+    }
66
+
67
+    public function setOrderSn($orderSn)
68
+    {
69
+        $this->orderSn = $orderSn;
70
+    }
71
+
72
+    public function setWaybillNo($waybillNo)
73
+    {
74
+        $this->waybillNo = $waybillNo;
75
+    }
76 76
 
77 77
 }
Please login to merge, or discard this patch.
pinduoduo/bin/src/Api/Request/PddServicemarketTradelistGetRequest.php 1 patch
Indentation   +88 added lines, -88 removed lines patch added patch discarded remove patch
@@ -7,93 +7,93 @@
 block discarded – undo
7 7
 class PddServicemarketTradelistGetRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Integer, "begin_time")
15
-	*/
16
-	private $beginTime;
17
-
18
-	/**
19
-	* @JsonProperty(Integer, "end_time")
20
-	*/
21
-	private $endTime;
22
-
23
-	/**
24
-	* @JsonProperty(Integer, "group_type")
25
-	*/
26
-	private $groupType;
27
-
28
-	/**
29
-	* @JsonProperty(Integer, "page")
30
-	*/
31
-	private $page;
32
-
33
-	/**
34
-	* @JsonProperty(Integer, "page_size")
35
-	*/
36
-	private $pageSize;
37
-
38
-	/**
39
-	* @JsonProperty(String, "service_order_sn")
40
-	*/
41
-	private $serviceOrderSn;
42
-
43
-	protected function setUserParams(&$params)
44
-	{
45
-		$this->setUserParam($params, "begin_time", $this->beginTime);
46
-		$this->setUserParam($params, "end_time", $this->endTime);
47
-		$this->setUserParam($params, "group_type", $this->groupType);
48
-		$this->setUserParam($params, "page", $this->page);
49
-		$this->setUserParam($params, "page_size", $this->pageSize);
50
-		$this->setUserParam($params, "service_order_sn", $this->serviceOrderSn);
51
-
52
-	}
53
-
54
-	public function getVersion()
55
-	{
56
-		return "V1";
57
-	}
58
-
59
-	public function getDataType()
60
-	{
61
-		return "JSON";
62
-	}
63
-
64
-	public function getType()
65
-	{
66
-		return "pdd.servicemarket.tradelist.get";
67
-	}
68
-
69
-	public function setBeginTime($beginTime)
70
-	{
71
-		$this->beginTime = $beginTime;
72
-	}
73
-
74
-	public function setEndTime($endTime)
75
-	{
76
-		$this->endTime = $endTime;
77
-	}
78
-
79
-	public function setGroupType($groupType)
80
-	{
81
-		$this->groupType = $groupType;
82
-	}
83
-
84
-	public function setPage($page)
85
-	{
86
-		$this->page = $page;
87
-	}
88
-
89
-	public function setPageSize($pageSize)
90
-	{
91
-		$this->pageSize = $pageSize;
92
-	}
93
-
94
-	public function setServiceOrderSn($serviceOrderSn)
95
-	{
96
-		$this->serviceOrderSn = $serviceOrderSn;
97
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Integer, "begin_time")
15
+     */
16
+    private $beginTime;
17
+
18
+    /**
19
+     * @JsonProperty(Integer, "end_time")
20
+     */
21
+    private $endTime;
22
+
23
+    /**
24
+     * @JsonProperty(Integer, "group_type")
25
+     */
26
+    private $groupType;
27
+
28
+    /**
29
+     * @JsonProperty(Integer, "page")
30
+     */
31
+    private $page;
32
+
33
+    /**
34
+     * @JsonProperty(Integer, "page_size")
35
+     */
36
+    private $pageSize;
37
+
38
+    /**
39
+     * @JsonProperty(String, "service_order_sn")
40
+     */
41
+    private $serviceOrderSn;
42
+
43
+    protected function setUserParams(&$params)
44
+    {
45
+        $this->setUserParam($params, "begin_time", $this->beginTime);
46
+        $this->setUserParam($params, "end_time", $this->endTime);
47
+        $this->setUserParam($params, "group_type", $this->groupType);
48
+        $this->setUserParam($params, "page", $this->page);
49
+        $this->setUserParam($params, "page_size", $this->pageSize);
50
+        $this->setUserParam($params, "service_order_sn", $this->serviceOrderSn);
51
+
52
+    }
53
+
54
+    public function getVersion()
55
+    {
56
+        return "V1";
57
+    }
58
+
59
+    public function getDataType()
60
+    {
61
+        return "JSON";
62
+    }
63
+
64
+    public function getType()
65
+    {
66
+        return "pdd.servicemarket.tradelist.get";
67
+    }
68
+
69
+    public function setBeginTime($beginTime)
70
+    {
71
+        $this->beginTime = $beginTime;
72
+    }
73
+
74
+    public function setEndTime($endTime)
75
+    {
76
+        $this->endTime = $endTime;
77
+    }
78
+
79
+    public function setGroupType($groupType)
80
+    {
81
+        $this->groupType = $groupType;
82
+    }
83
+
84
+    public function setPage($page)
85
+    {
86
+        $this->page = $page;
87
+    }
88
+
89
+    public function setPageSize($pageSize)
90
+    {
91
+        $this->pageSize = $pageSize;
92
+    }
93
+
94
+    public function setServiceOrderSn($serviceOrderSn)
95
+    {
96
+        $this->serviceOrderSn = $serviceOrderSn;
97
+    }
98 98
 
99 99
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddAdApiPlanQueryListRequest.php 1 patch
Indentation   +77 added lines, -77 removed lines patch added patch discarded remove patch
@@ -7,82 +7,82 @@
 block discarded – undo
7 7
 class PddAdApiPlanQueryListRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "beginDate")
15
-	*/
16
-	private $beginDate;
17
-
18
-	/**
19
-	* @JsonProperty(String, "endDate")
20
-	*/
21
-	private $endDate;
22
-
23
-	/**
24
-	* @JsonProperty(Integer, "orderBy")
25
-	*/
26
-	private $orderBy;
27
-
28
-	/**
29
-	* @JsonProperty(Integer, "scenesType")
30
-	*/
31
-	private $scenesType;
32
-
33
-	/**
34
-	* @JsonProperty(Integer, "sortBy")
35
-	*/
36
-	private $sortBy;
37
-
38
-	protected function setUserParams(&$params)
39
-	{
40
-		$this->setUserParam($params, "beginDate", $this->beginDate);
41
-		$this->setUserParam($params, "endDate", $this->endDate);
42
-		$this->setUserParam($params, "orderBy", $this->orderBy);
43
-		$this->setUserParam($params, "scenesType", $this->scenesType);
44
-		$this->setUserParam($params, "sortBy", $this->sortBy);
45
-
46
-	}
47
-
48
-	public function getVersion()
49
-	{
50
-		return "V1";
51
-	}
52
-
53
-	public function getDataType()
54
-	{
55
-		return "JSON";
56
-	}
57
-
58
-	public function getType()
59
-	{
60
-		return "pdd.ad.api.plan.query.list";
61
-	}
62
-
63
-	public function setBeginDate($beginDate)
64
-	{
65
-		$this->beginDate = $beginDate;
66
-	}
67
-
68
-	public function setEndDate($endDate)
69
-	{
70
-		$this->endDate = $endDate;
71
-	}
72
-
73
-	public function setOrderBy($orderBy)
74
-	{
75
-		$this->orderBy = $orderBy;
76
-	}
77
-
78
-	public function setScenesType($scenesType)
79
-	{
80
-		$this->scenesType = $scenesType;
81
-	}
82
-
83
-	public function setSortBy($sortBy)
84
-	{
85
-		$this->sortBy = $sortBy;
86
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "beginDate")
15
+     */
16
+    private $beginDate;
17
+
18
+    /**
19
+     * @JsonProperty(String, "endDate")
20
+     */
21
+    private $endDate;
22
+
23
+    /**
24
+     * @JsonProperty(Integer, "orderBy")
25
+     */
26
+    private $orderBy;
27
+
28
+    /**
29
+     * @JsonProperty(Integer, "scenesType")
30
+     */
31
+    private $scenesType;
32
+
33
+    /**
34
+     * @JsonProperty(Integer, "sortBy")
35
+     */
36
+    private $sortBy;
37
+
38
+    protected function setUserParams(&$params)
39
+    {
40
+        $this->setUserParam($params, "beginDate", $this->beginDate);
41
+        $this->setUserParam($params, "endDate", $this->endDate);
42
+        $this->setUserParam($params, "orderBy", $this->orderBy);
43
+        $this->setUserParam($params, "scenesType", $this->scenesType);
44
+        $this->setUserParam($params, "sortBy", $this->sortBy);
45
+
46
+    }
47
+
48
+    public function getVersion()
49
+    {
50
+        return "V1";
51
+    }
52
+
53
+    public function getDataType()
54
+    {
55
+        return "JSON";
56
+    }
57
+
58
+    public function getType()
59
+    {
60
+        return "pdd.ad.api.plan.query.list";
61
+    }
62
+
63
+    public function setBeginDate($beginDate)
64
+    {
65
+        $this->beginDate = $beginDate;
66
+    }
67
+
68
+    public function setEndDate($endDate)
69
+    {
70
+        $this->endDate = $endDate;
71
+    }
72
+
73
+    public function setOrderBy($orderBy)
74
+    {
75
+        $this->orderBy = $orderBy;
76
+    }
77
+
78
+    public function setScenesType($scenesType)
79
+    {
80
+        $this->scenesType = $scenesType;
81
+    }
82
+
83
+    public function setSortBy($sortBy)
84
+    {
85
+        $this->sortBy = $sortBy;
86
+    }
87 87
 
88 88
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddAdApiGoodsQueryPageRequest.php 1 patch
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -7,71 +7,71 @@
 block discarded – undo
7 7
 class PddAdApiGoodsQueryPageRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "goodsName")
15
-	*/
16
-	private $goodsName;
17
-
18
-	/**
19
-	* @JsonProperty(Integer, "pageNumber")
20
-	*/
21
-	private $pageNumber;
22
-
23
-	/**
24
-	* @JsonProperty(Integer, "pageSize")
25
-	*/
26
-	private $pageSize;
27
-
28
-	/**
29
-	* @JsonProperty(Long, "planId")
30
-	*/
31
-	private $planId;
32
-
33
-	protected function setUserParams(&$params)
34
-	{
35
-		$this->setUserParam($params, "goodsName", $this->goodsName);
36
-		$this->setUserParam($params, "pageNumber", $this->pageNumber);
37
-		$this->setUserParam($params, "pageSize", $this->pageSize);
38
-		$this->setUserParam($params, "planId", $this->planId);
39
-
40
-	}
41
-
42
-	public function getVersion()
43
-	{
44
-		return "V1";
45
-	}
46
-
47
-	public function getDataType()
48
-	{
49
-		return "JSON";
50
-	}
51
-
52
-	public function getType()
53
-	{
54
-		return "pdd.ad.api.goods.query.page";
55
-	}
56
-
57
-	public function setGoodsName($goodsName)
58
-	{
59
-		$this->goodsName = $goodsName;
60
-	}
61
-
62
-	public function setPageNumber($pageNumber)
63
-	{
64
-		$this->pageNumber = $pageNumber;
65
-	}
66
-
67
-	public function setPageSize($pageSize)
68
-	{
69
-		$this->pageSize = $pageSize;
70
-	}
71
-
72
-	public function setPlanId($planId)
73
-	{
74
-		$this->planId = $planId;
75
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "goodsName")
15
+     */
16
+    private $goodsName;
17
+
18
+    /**
19
+     * @JsonProperty(Integer, "pageNumber")
20
+     */
21
+    private $pageNumber;
22
+
23
+    /**
24
+     * @JsonProperty(Integer, "pageSize")
25
+     */
26
+    private $pageSize;
27
+
28
+    /**
29
+     * @JsonProperty(Long, "planId")
30
+     */
31
+    private $planId;
32
+
33
+    protected function setUserParams(&$params)
34
+    {
35
+        $this->setUserParam($params, "goodsName", $this->goodsName);
36
+        $this->setUserParam($params, "pageNumber", $this->pageNumber);
37
+        $this->setUserParam($params, "pageSize", $this->pageSize);
38
+        $this->setUserParam($params, "planId", $this->planId);
39
+
40
+    }
41
+
42
+    public function getVersion()
43
+    {
44
+        return "V1";
45
+    }
46
+
47
+    public function getDataType()
48
+    {
49
+        return "JSON";
50
+    }
51
+
52
+    public function getType()
53
+    {
54
+        return "pdd.ad.api.goods.query.page";
55
+    }
56
+
57
+    public function setGoodsName($goodsName)
58
+    {
59
+        $this->goodsName = $goodsName;
60
+    }
61
+
62
+    public function setPageNumber($pageNumber)
63
+    {
64
+        $this->pageNumber = $pageNumber;
65
+    }
66
+
67
+    public function setPageSize($pageSize)
68
+    {
69
+        $this->pageSize = $pageSize;
70
+    }
71
+
72
+    public function setPlanId($planId)
73
+    {
74
+        $this->planId = $planId;
75
+    }
76 76
 
77 77
 }
Please login to merge, or discard this patch.
pinduoduo/bin/src/Api/Request/PddFlightCallbackConfirmOrderRequest.php 1 patch
Indentation   +442 added lines, -442 removed lines patch added patch discarded remove patch
@@ -7,470 +7,470 @@
 block discarded – undo
7 7
 class PddFlightCallbackConfirmOrderRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Integer, "error_code")
15
-	*/
16
-	private $errorCode;
17
-
18
-	/**
19
-	* @JsonProperty(String, "error_msg")
20
-	*/
21
-	private $errorMsg;
22
-
23
-	/**
24
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightCallbackConfirmOrderRequest_FlightInfoListItem>, "flight_info_list")
25
-	*/
26
-	private $flightInfoList;
27
-
28
-	/**
29
-	* @JsonProperty(String, "out_order_no")
30
-	*/
31
-	private $outOrderNo;
32
-
33
-	/**
34
-	* @JsonProperty(String, "parent_travel_sn")
35
-	*/
36
-	private $parentTravelSn;
37
-
38
-	/**
39
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightCallbackConfirmOrderRequest_PassengerInfoListItem>, "passenger_info_list")
40
-	*/
41
-	private $passengerInfoList;
42
-
43
-	/**
44
-	* @JsonProperty(Integer, "ticket_status")
45
-	*/
46
-	private $ticketStatus;
47
-
48
-	/**
49
-	* @JsonProperty(String, "ticket_time")
50
-	*/
51
-	private $ticketTime;
52
-
53
-	/**
54
-	* @JsonProperty(Long, "total_airport_tax")
55
-	*/
56
-	private $totalAirportTax;
57
-
58
-	/**
59
-	* @JsonProperty(Long, "total_fuel_tax")
60
-	*/
61
-	private $totalFuelTax;
62
-
63
-	/**
64
-	* @JsonProperty(Long, "total_pay")
65
-	*/
66
-	private $totalPay;
67
-
68
-	/**
69
-	* @JsonProperty(Long, "total_settle_price")
70
-	*/
71
-	private $totalSettlePrice;
72
-
73
-	/**
74
-	* @JsonProperty(String, "trace_id")
75
-	*/
76
-	private $traceId;
77
-
78
-	protected function setUserParams(&$params)
79
-	{
80
-		$this->setUserParam($params, "error_code", $this->errorCode);
81
-		$this->setUserParam($params, "error_msg", $this->errorMsg);
82
-		$this->setUserParam($params, "flight_info_list", $this->flightInfoList);
83
-		$this->setUserParam($params, "out_order_no", $this->outOrderNo);
84
-		$this->setUserParam($params, "parent_travel_sn", $this->parentTravelSn);
85
-		$this->setUserParam($params, "passenger_info_list", $this->passengerInfoList);
86
-		$this->setUserParam($params, "ticket_status", $this->ticketStatus);
87
-		$this->setUserParam($params, "ticket_time", $this->ticketTime);
88
-		$this->setUserParam($params, "total_airport_tax", $this->totalAirportTax);
89
-		$this->setUserParam($params, "total_fuel_tax", $this->totalFuelTax);
90
-		$this->setUserParam($params, "total_pay", $this->totalPay);
91
-		$this->setUserParam($params, "total_settle_price", $this->totalSettlePrice);
92
-		$this->setUserParam($params, "trace_id", $this->traceId);
93
-
94
-	}
95
-
96
-	public function getVersion()
97
-	{
98
-		return "V1";
99
-	}
100
-
101
-	public function getDataType()
102
-	{
103
-		return "JSON";
104
-	}
105
-
106
-	public function getType()
107
-	{
108
-		return "pdd.flight.callback.confirm.order";
109
-	}
110
-
111
-	public function setErrorCode($errorCode)
112
-	{
113
-		$this->errorCode = $errorCode;
114
-	}
115
-
116
-	public function setErrorMsg($errorMsg)
117
-	{
118
-		$this->errorMsg = $errorMsg;
119
-	}
120
-
121
-	public function setFlightInfoList($flightInfoList)
122
-	{
123
-		$this->flightInfoList = $flightInfoList;
124
-	}
125
-
126
-	public function setOutOrderNo($outOrderNo)
127
-	{
128
-		$this->outOrderNo = $outOrderNo;
129
-	}
130
-
131
-	public function setParentTravelSn($parentTravelSn)
132
-	{
133
-		$this->parentTravelSn = $parentTravelSn;
134
-	}
135
-
136
-	public function setPassengerInfoList($passengerInfoList)
137
-	{
138
-		$this->passengerInfoList = $passengerInfoList;
139
-	}
140
-
141
-	public function setTicketStatus($ticketStatus)
142
-	{
143
-		$this->ticketStatus = $ticketStatus;
144
-	}
145
-
146
-	public function setTicketTime($ticketTime)
147
-	{
148
-		$this->ticketTime = $ticketTime;
149
-	}
150
-
151
-	public function setTotalAirportTax($totalAirportTax)
152
-	{
153
-		$this->totalAirportTax = $totalAirportTax;
154
-	}
155
-
156
-	public function setTotalFuelTax($totalFuelTax)
157
-	{
158
-		$this->totalFuelTax = $totalFuelTax;
159
-	}
160
-
161
-	public function setTotalPay($totalPay)
162
-	{
163
-		$this->totalPay = $totalPay;
164
-	}
165
-
166
-	public function setTotalSettlePrice($totalSettlePrice)
167
-	{
168
-		$this->totalSettlePrice = $totalSettlePrice;
169
-	}
170
-
171
-	public function setTraceId($traceId)
172
-	{
173
-		$this->traceId = $traceId;
174
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Integer, "error_code")
15
+     */
16
+    private $errorCode;
17
+
18
+    /**
19
+     * @JsonProperty(String, "error_msg")
20
+     */
21
+    private $errorMsg;
22
+
23
+    /**
24
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightCallbackConfirmOrderRequest_FlightInfoListItem>, "flight_info_list")
25
+     */
26
+    private $flightInfoList;
27
+
28
+    /**
29
+     * @JsonProperty(String, "out_order_no")
30
+     */
31
+    private $outOrderNo;
32
+
33
+    /**
34
+     * @JsonProperty(String, "parent_travel_sn")
35
+     */
36
+    private $parentTravelSn;
37
+
38
+    /**
39
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightCallbackConfirmOrderRequest_PassengerInfoListItem>, "passenger_info_list")
40
+     */
41
+    private $passengerInfoList;
42
+
43
+    /**
44
+     * @JsonProperty(Integer, "ticket_status")
45
+     */
46
+    private $ticketStatus;
47
+
48
+    /**
49
+     * @JsonProperty(String, "ticket_time")
50
+     */
51
+    private $ticketTime;
52
+
53
+    /**
54
+     * @JsonProperty(Long, "total_airport_tax")
55
+     */
56
+    private $totalAirportTax;
57
+
58
+    /**
59
+     * @JsonProperty(Long, "total_fuel_tax")
60
+     */
61
+    private $totalFuelTax;
62
+
63
+    /**
64
+     * @JsonProperty(Long, "total_pay")
65
+     */
66
+    private $totalPay;
67
+
68
+    /**
69
+     * @JsonProperty(Long, "total_settle_price")
70
+     */
71
+    private $totalSettlePrice;
72
+
73
+    /**
74
+     * @JsonProperty(String, "trace_id")
75
+     */
76
+    private $traceId;
77
+
78
+    protected function setUserParams(&$params)
79
+    {
80
+        $this->setUserParam($params, "error_code", $this->errorCode);
81
+        $this->setUserParam($params, "error_msg", $this->errorMsg);
82
+        $this->setUserParam($params, "flight_info_list", $this->flightInfoList);
83
+        $this->setUserParam($params, "out_order_no", $this->outOrderNo);
84
+        $this->setUserParam($params, "parent_travel_sn", $this->parentTravelSn);
85
+        $this->setUserParam($params, "passenger_info_list", $this->passengerInfoList);
86
+        $this->setUserParam($params, "ticket_status", $this->ticketStatus);
87
+        $this->setUserParam($params, "ticket_time", $this->ticketTime);
88
+        $this->setUserParam($params, "total_airport_tax", $this->totalAirportTax);
89
+        $this->setUserParam($params, "total_fuel_tax", $this->totalFuelTax);
90
+        $this->setUserParam($params, "total_pay", $this->totalPay);
91
+        $this->setUserParam($params, "total_settle_price", $this->totalSettlePrice);
92
+        $this->setUserParam($params, "trace_id", $this->traceId);
93
+
94
+    }
95
+
96
+    public function getVersion()
97
+    {
98
+        return "V1";
99
+    }
100
+
101
+    public function getDataType()
102
+    {
103
+        return "JSON";
104
+    }
105
+
106
+    public function getType()
107
+    {
108
+        return "pdd.flight.callback.confirm.order";
109
+    }
110
+
111
+    public function setErrorCode($errorCode)
112
+    {
113
+        $this->errorCode = $errorCode;
114
+    }
115
+
116
+    public function setErrorMsg($errorMsg)
117
+    {
118
+        $this->errorMsg = $errorMsg;
119
+    }
120
+
121
+    public function setFlightInfoList($flightInfoList)
122
+    {
123
+        $this->flightInfoList = $flightInfoList;
124
+    }
125
+
126
+    public function setOutOrderNo($outOrderNo)
127
+    {
128
+        $this->outOrderNo = $outOrderNo;
129
+    }
130
+
131
+    public function setParentTravelSn($parentTravelSn)
132
+    {
133
+        $this->parentTravelSn = $parentTravelSn;
134
+    }
135
+
136
+    public function setPassengerInfoList($passengerInfoList)
137
+    {
138
+        $this->passengerInfoList = $passengerInfoList;
139
+    }
140
+
141
+    public function setTicketStatus($ticketStatus)
142
+    {
143
+        $this->ticketStatus = $ticketStatus;
144
+    }
145
+
146
+    public function setTicketTime($ticketTime)
147
+    {
148
+        $this->ticketTime = $ticketTime;
149
+    }
150
+
151
+    public function setTotalAirportTax($totalAirportTax)
152
+    {
153
+        $this->totalAirportTax = $totalAirportTax;
154
+    }
155
+
156
+    public function setTotalFuelTax($totalFuelTax)
157
+    {
158
+        $this->totalFuelTax = $totalFuelTax;
159
+    }
160
+
161
+    public function setTotalPay($totalPay)
162
+    {
163
+        $this->totalPay = $totalPay;
164
+    }
165
+
166
+    public function setTotalSettlePrice($totalSettlePrice)
167
+    {
168
+        $this->totalSettlePrice = $totalSettlePrice;
169
+    }
170
+
171
+    public function setTraceId($traceId)
172
+    {
173
+        $this->traceId = $traceId;
174
+    }
175 175
 
176 176
 }
177 177
 
178 178
 class PddFlightCallbackConfirmOrderRequest_FlightInfoListItem extends PopBaseJsonEntity
179 179
 {
180 180
 
181
-	public function __construct()
182
-	{
183
-
184
-	}
185
-
186
-	/**
187
-	* @JsonProperty(String, "arrival_airport_code")
188
-	*/
189
-	private $arrivalAirportCode;
190
-
191
-	/**
192
-	* @JsonProperty(String, "arrival_date_time")
193
-	*/
194
-	private $arrivalDateTime;
195
-
196
-	/**
197
-	* @JsonProperty(String, "arrival_terminal")
198
-	*/
199
-	private $arrivalTerminal;
200
-
201
-	/**
202
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightCallbackConfirmOrderRequest_FlightInfoListItemCabinInfoListItem>, "cabin_info_list")
203
-	*/
204
-	private $cabinInfoList;
205
-
206
-	/**
207
-	* @JsonProperty(String, "carrier_code")
208
-	*/
209
-	private $carrierCode;
210
-
211
-	/**
212
-	* @JsonProperty(String, "departure_airport_code")
213
-	*/
214
-	private $departureAirportCode;
215
-
216
-	/**
217
-	* @JsonProperty(String, "departure_date_time")
218
-	*/
219
-	private $departureDateTime;
220
-
221
-	/**
222
-	* @JsonProperty(String, "departure_terminal")
223
-	*/
224
-	private $departureTerminal;
225
-
226
-	/**
227
-	* @JsonProperty(String, "flight_no")
228
-	*/
229
-	private $flightNo;
230
-
231
-	/**
232
-	* @JsonProperty(String, "operate_carrier_code")
233
-	*/
234
-	private $operateCarrierCode;
235
-
236
-	/**
237
-	* @JsonProperty(String, "operate_flight_no")
238
-	*/
239
-	private $operateFlightNo;
240
-
241
-	/**
242
-	* @JsonProperty(Integer, "segment_no")
243
-	*/
244
-	private $segmentNo;
245
-
246
-	/**
247
-	* @JsonProperty(Integer, "sequence_no")
248
-	*/
249
-	private $sequenceNo;
250
-
251
-	/**
252
-	* @JsonProperty(Boolean, "shared")
253
-	*/
254
-	private $shared;
255
-
256
-	public function setArrivalAirportCode($arrivalAirportCode)
257
-	{
258
-		$this->arrivalAirportCode = $arrivalAirportCode;
259
-	}
260
-
261
-	public function setArrivalDateTime($arrivalDateTime)
262
-	{
263
-		$this->arrivalDateTime = $arrivalDateTime;
264
-	}
265
-
266
-	public function setArrivalTerminal($arrivalTerminal)
267
-	{
268
-		$this->arrivalTerminal = $arrivalTerminal;
269
-	}
270
-
271
-	public function setCabinInfoList($cabinInfoList)
272
-	{
273
-		$this->cabinInfoList = $cabinInfoList;
274
-	}
275
-
276
-	public function setCarrierCode($carrierCode)
277
-	{
278
-		$this->carrierCode = $carrierCode;
279
-	}
280
-
281
-	public function setDepartureAirportCode($departureAirportCode)
282
-	{
283
-		$this->departureAirportCode = $departureAirportCode;
284
-	}
285
-
286
-	public function setDepartureDateTime($departureDateTime)
287
-	{
288
-		$this->departureDateTime = $departureDateTime;
289
-	}
290
-
291
-	public function setDepartureTerminal($departureTerminal)
292
-	{
293
-		$this->departureTerminal = $departureTerminal;
294
-	}
295
-
296
-	public function setFlightNo($flightNo)
297
-	{
298
-		$this->flightNo = $flightNo;
299
-	}
300
-
301
-	public function setOperateCarrierCode($operateCarrierCode)
302
-	{
303
-		$this->operateCarrierCode = $operateCarrierCode;
304
-	}
305
-
306
-	public function setOperateFlightNo($operateFlightNo)
307
-	{
308
-		$this->operateFlightNo = $operateFlightNo;
309
-	}
310
-
311
-	public function setSegmentNo($segmentNo)
312
-	{
313
-		$this->segmentNo = $segmentNo;
314
-	}
315
-
316
-	public function setSequenceNo($sequenceNo)
317
-	{
318
-		$this->sequenceNo = $sequenceNo;
319
-	}
320
-
321
-	public function setShared($shared)
322
-	{
323
-		$this->shared = $shared;
324
-	}
181
+    public function __construct()
182
+    {
183
+
184
+    }
185
+
186
+    /**
187
+     * @JsonProperty(String, "arrival_airport_code")
188
+     */
189
+    private $arrivalAirportCode;
190
+
191
+    /**
192
+     * @JsonProperty(String, "arrival_date_time")
193
+     */
194
+    private $arrivalDateTime;
195
+
196
+    /**
197
+     * @JsonProperty(String, "arrival_terminal")
198
+     */
199
+    private $arrivalTerminal;
200
+
201
+    /**
202
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightCallbackConfirmOrderRequest_FlightInfoListItemCabinInfoListItem>, "cabin_info_list")
203
+     */
204
+    private $cabinInfoList;
205
+
206
+    /**
207
+     * @JsonProperty(String, "carrier_code")
208
+     */
209
+    private $carrierCode;
210
+
211
+    /**
212
+     * @JsonProperty(String, "departure_airport_code")
213
+     */
214
+    private $departureAirportCode;
215
+
216
+    /**
217
+     * @JsonProperty(String, "departure_date_time")
218
+     */
219
+    private $departureDateTime;
220
+
221
+    /**
222
+     * @JsonProperty(String, "departure_terminal")
223
+     */
224
+    private $departureTerminal;
225
+
226
+    /**
227
+     * @JsonProperty(String, "flight_no")
228
+     */
229
+    private $flightNo;
230
+
231
+    /**
232
+     * @JsonProperty(String, "operate_carrier_code")
233
+     */
234
+    private $operateCarrierCode;
235
+
236
+    /**
237
+     * @JsonProperty(String, "operate_flight_no")
238
+     */
239
+    private $operateFlightNo;
240
+
241
+    /**
242
+     * @JsonProperty(Integer, "segment_no")
243
+     */
244
+    private $segmentNo;
245
+
246
+    /**
247
+     * @JsonProperty(Integer, "sequence_no")
248
+     */
249
+    private $sequenceNo;
250
+
251
+    /**
252
+     * @JsonProperty(Boolean, "shared")
253
+     */
254
+    private $shared;
255
+
256
+    public function setArrivalAirportCode($arrivalAirportCode)
257
+    {
258
+        $this->arrivalAirportCode = $arrivalAirportCode;
259
+    }
260
+
261
+    public function setArrivalDateTime($arrivalDateTime)
262
+    {
263
+        $this->arrivalDateTime = $arrivalDateTime;
264
+    }
265
+
266
+    public function setArrivalTerminal($arrivalTerminal)
267
+    {
268
+        $this->arrivalTerminal = $arrivalTerminal;
269
+    }
270
+
271
+    public function setCabinInfoList($cabinInfoList)
272
+    {
273
+        $this->cabinInfoList = $cabinInfoList;
274
+    }
275
+
276
+    public function setCarrierCode($carrierCode)
277
+    {
278
+        $this->carrierCode = $carrierCode;
279
+    }
280
+
281
+    public function setDepartureAirportCode($departureAirportCode)
282
+    {
283
+        $this->departureAirportCode = $departureAirportCode;
284
+    }
285
+
286
+    public function setDepartureDateTime($departureDateTime)
287
+    {
288
+        $this->departureDateTime = $departureDateTime;
289
+    }
290
+
291
+    public function setDepartureTerminal($departureTerminal)
292
+    {
293
+        $this->departureTerminal = $departureTerminal;
294
+    }
295
+
296
+    public function setFlightNo($flightNo)
297
+    {
298
+        $this->flightNo = $flightNo;
299
+    }
300
+
301
+    public function setOperateCarrierCode($operateCarrierCode)
302
+    {
303
+        $this->operateCarrierCode = $operateCarrierCode;
304
+    }
305
+
306
+    public function setOperateFlightNo($operateFlightNo)
307
+    {
308
+        $this->operateFlightNo = $operateFlightNo;
309
+    }
310
+
311
+    public function setSegmentNo($segmentNo)
312
+    {
313
+        $this->segmentNo = $segmentNo;
314
+    }
315
+
316
+    public function setSequenceNo($sequenceNo)
317
+    {
318
+        $this->sequenceNo = $sequenceNo;
319
+    }
320
+
321
+    public function setShared($shared)
322
+    {
323
+        $this->shared = $shared;
324
+    }
325 325
 
326 326
 }
327 327
 
328 328
 class PddFlightCallbackConfirmOrderRequest_FlightInfoListItemCabinInfoListItem extends PopBaseJsonEntity
329 329
 {
330 330
 
331
-	public function __construct()
332
-	{
331
+    public function __construct()
332
+    {
333 333
 
334
-	}
334
+    }
335 335
 
336
-	/**
337
-	* @JsonProperty(String, "passenger_type")
338
-	*/
339
-	private $passengerType;
336
+    /**
337
+     * @JsonProperty(String, "passenger_type")
338
+     */
339
+    private $passengerType;
340 340
 
341
-	/**
342
-	* @JsonProperty(String, "sub_class")
343
-	*/
344
-	private $subClass;
341
+    /**
342
+     * @JsonProperty(String, "sub_class")
343
+     */
344
+    private $subClass;
345 345
 
346
-	public function setPassengerType($passengerType)
347
-	{
348
-		$this->passengerType = $passengerType;
349
-	}
346
+    public function setPassengerType($passengerType)
347
+    {
348
+        $this->passengerType = $passengerType;
349
+    }
350 350
 
351
-	public function setSubClass($subClass)
352
-	{
353
-		$this->subClass = $subClass;
354
-	}
351
+    public function setSubClass($subClass)
352
+    {
353
+        $this->subClass = $subClass;
354
+    }
355 355
 
356 356
 }
357 357
 
358 358
 class PddFlightCallbackConfirmOrderRequest_PassengerInfoListItem extends PopBaseJsonEntity
359 359
 {
360 360
 
361
-	public function __construct()
362
-	{
363
-
364
-	}
365
-
366
-	/**
367
-	* @JsonProperty(Long, "airport_tax")
368
-	*/
369
-	private $airportTax;
370
-
371
-	/**
372
-	* @JsonProperty(Long, "fuel_tax")
373
-	*/
374
-	private $fuelTax;
375
-
376
-	/**
377
-	* @JsonProperty(String, "identity_no")
378
-	*/
379
-	private $identityNo;
380
-
381
-	/**
382
-	* @JsonProperty(String, "identity_type")
383
-	*/
384
-	private $identityType;
385
-
386
-	/**
387
-	* @JsonProperty(String, "name")
388
-	*/
389
-	private $name;
390
-
391
-	/**
392
-	* @JsonProperty(String, "out_sub_order_no")
393
-	*/
394
-	private $outSubOrderNo;
395
-
396
-	/**
397
-	* @JsonProperty(Long, "pay")
398
-	*/
399
-	private $pay;
400
-
401
-	/**
402
-	* @JsonProperty(String, "pnr")
403
-	*/
404
-	private $pnr;
405
-
406
-	/**
407
-	* @JsonProperty(Long, "settle_price")
408
-	*/
409
-	private $settlePrice;
410
-
411
-	/**
412
-	* @JsonProperty(String, "ticket_no")
413
-	*/
414
-	private $ticketNo;
415
-
416
-	/**
417
-	* @JsonProperty(String, "travel_sn")
418
-	*/
419
-	private $travelSn;
420
-
421
-	public function setAirportTax($airportTax)
422
-	{
423
-		$this->airportTax = $airportTax;
424
-	}
425
-
426
-	public function setFuelTax($fuelTax)
427
-	{
428
-		$this->fuelTax = $fuelTax;
429
-	}
430
-
431
-	public function setIdentityNo($identityNo)
432
-	{
433
-		$this->identityNo = $identityNo;
434
-	}
435
-
436
-	public function setIdentityType($identityType)
437
-	{
438
-		$this->identityType = $identityType;
439
-	}
440
-
441
-	public function setName($name)
442
-	{
443
-		$this->name = $name;
444
-	}
445
-
446
-	public function setOutSubOrderNo($outSubOrderNo)
447
-	{
448
-		$this->outSubOrderNo = $outSubOrderNo;
449
-	}
450
-
451
-	public function setPay($pay)
452
-	{
453
-		$this->pay = $pay;
454
-	}
455
-
456
-	public function setPnr($pnr)
457
-	{
458
-		$this->pnr = $pnr;
459
-	}
460
-
461
-	public function setSettlePrice($settlePrice)
462
-	{
463
-		$this->settlePrice = $settlePrice;
464
-	}
465
-
466
-	public function setTicketNo($ticketNo)
467
-	{
468
-		$this->ticketNo = $ticketNo;
469
-	}
470
-
471
-	public function setTravelSn($travelSn)
472
-	{
473
-		$this->travelSn = $travelSn;
474
-	}
361
+    public function __construct()
362
+    {
363
+
364
+    }
365
+
366
+    /**
367
+     * @JsonProperty(Long, "airport_tax")
368
+     */
369
+    private $airportTax;
370
+
371
+    /**
372
+     * @JsonProperty(Long, "fuel_tax")
373
+     */
374
+    private $fuelTax;
375
+
376
+    /**
377
+     * @JsonProperty(String, "identity_no")
378
+     */
379
+    private $identityNo;
380
+
381
+    /**
382
+     * @JsonProperty(String, "identity_type")
383
+     */
384
+    private $identityType;
385
+
386
+    /**
387
+     * @JsonProperty(String, "name")
388
+     */
389
+    private $name;
390
+
391
+    /**
392
+     * @JsonProperty(String, "out_sub_order_no")
393
+     */
394
+    private $outSubOrderNo;
395
+
396
+    /**
397
+     * @JsonProperty(Long, "pay")
398
+     */
399
+    private $pay;
400
+
401
+    /**
402
+     * @JsonProperty(String, "pnr")
403
+     */
404
+    private $pnr;
405
+
406
+    /**
407
+     * @JsonProperty(Long, "settle_price")
408
+     */
409
+    private $settlePrice;
410
+
411
+    /**
412
+     * @JsonProperty(String, "ticket_no")
413
+     */
414
+    private $ticketNo;
415
+
416
+    /**
417
+     * @JsonProperty(String, "travel_sn")
418
+     */
419
+    private $travelSn;
420
+
421
+    public function setAirportTax($airportTax)
422
+    {
423
+        $this->airportTax = $airportTax;
424
+    }
425
+
426
+    public function setFuelTax($fuelTax)
427
+    {
428
+        $this->fuelTax = $fuelTax;
429
+    }
430
+
431
+    public function setIdentityNo($identityNo)
432
+    {
433
+        $this->identityNo = $identityNo;
434
+    }
435
+
436
+    public function setIdentityType($identityType)
437
+    {
438
+        $this->identityType = $identityType;
439
+    }
440
+
441
+    public function setName($name)
442
+    {
443
+        $this->name = $name;
444
+    }
445
+
446
+    public function setOutSubOrderNo($outSubOrderNo)
447
+    {
448
+        $this->outSubOrderNo = $outSubOrderNo;
449
+    }
450
+
451
+    public function setPay($pay)
452
+    {
453
+        $this->pay = $pay;
454
+    }
455
+
456
+    public function setPnr($pnr)
457
+    {
458
+        $this->pnr = $pnr;
459
+    }
460
+
461
+    public function setSettlePrice($settlePrice)
462
+    {
463
+        $this->settlePrice = $settlePrice;
464
+    }
465
+
466
+    public function setTicketNo($ticketNo)
467
+    {
468
+        $this->ticketNo = $ticketNo;
469
+    }
470
+
471
+    public function setTravelSn($travelSn)
472
+    {
473
+        $this->travelSn = $travelSn;
474
+    }
475 475
 
476 476
 }
Please login to merge, or discard this patch.
service/pinduoduo/bin/src/Api/Request/PddGoodsSizespecMetaGetRequest.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -7,38 +7,38 @@
 block discarded – undo
7 7
 class PddGoodsSizespecMetaGetRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Integer, "class_id")
15
-	*/
16
-	private $classId;
17
-
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "class_id", $this->classId);
21
-
22
-	}
23
-
24
-	public function getVersion()
25
-	{
26
-		return "V1";
27
-	}
28
-
29
-	public function getDataType()
30
-	{
31
-		return "JSON";
32
-	}
33
-
34
-	public function getType()
35
-	{
36
-		return "pdd.goods.sizespec.meta.get";
37
-	}
38
-
39
-	public function setClassId($classId)
40
-	{
41
-		$this->classId = $classId;
42
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Integer, "class_id")
15
+     */
16
+    private $classId;
17
+
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "class_id", $this->classId);
21
+
22
+    }
23
+
24
+    public function getVersion()
25
+    {
26
+        return "V1";
27
+    }
28
+
29
+    public function getDataType()
30
+    {
31
+        return "JSON";
32
+    }
33
+
34
+    public function getType()
35
+    {
36
+        return "pdd.goods.sizespec.meta.get";
37
+    }
38
+
39
+    public function setClassId($classId)
40
+    {
41
+        $this->classId = $classId;
42
+    }
43 43
 
44 44
 }
Please login to merge, or discard this patch.
pinduoduo/bin/src/Api/Request/PddDdkOauthGoodsRecommendGetRequest.php 1 patch
Indentation   +88 added lines, -88 removed lines patch added patch discarded remove patch
@@ -7,93 +7,93 @@
 block discarded – undo
7 7
 class PddDdkOauthGoodsRecommendGetRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Integer, "channel_type")
15
-	*/
16
-	private $channelType;
17
-
18
-	/**
19
-	* @JsonProperty(String, "custom_parameters")
20
-	*/
21
-	private $customParameters;
22
-
23
-	/**
24
-	* @JsonProperty(Integer, "limit")
25
-	*/
26
-	private $limit;
27
-
28
-	/**
29
-	* @JsonProperty(String, "list_id")
30
-	*/
31
-	private $listId;
32
-
33
-	/**
34
-	* @JsonProperty(Integer, "offset")
35
-	*/
36
-	private $offset;
37
-
38
-	/**
39
-	* @JsonProperty(String, "pid")
40
-	*/
41
-	private $pid;
42
-
43
-	protected function setUserParams(&$params)
44
-	{
45
-		$this->setUserParam($params, "channel_type", $this->channelType);
46
-		$this->setUserParam($params, "custom_parameters", $this->customParameters);
47
-		$this->setUserParam($params, "limit", $this->limit);
48
-		$this->setUserParam($params, "list_id", $this->listId);
49
-		$this->setUserParam($params, "offset", $this->offset);
50
-		$this->setUserParam($params, "pid", $this->pid);
51
-
52
-	}
53
-
54
-	public function getVersion()
55
-	{
56
-		return "V1";
57
-	}
58
-
59
-	public function getDataType()
60
-	{
61
-		return "JSON";
62
-	}
63
-
64
-	public function getType()
65
-	{
66
-		return "pdd.ddk.oauth.goods.recommend.get";
67
-	}
68
-
69
-	public function setChannelType($channelType)
70
-	{
71
-		$this->channelType = $channelType;
72
-	}
73
-
74
-	public function setCustomParameters($customParameters)
75
-	{
76
-		$this->customParameters = $customParameters;
77
-	}
78
-
79
-	public function setLimit($limit)
80
-	{
81
-		$this->limit = $limit;
82
-	}
83
-
84
-	public function setListId($listId)
85
-	{
86
-		$this->listId = $listId;
87
-	}
88
-
89
-	public function setOffset($offset)
90
-	{
91
-		$this->offset = $offset;
92
-	}
93
-
94
-	public function setPid($pid)
95
-	{
96
-		$this->pid = $pid;
97
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Integer, "channel_type")
15
+     */
16
+    private $channelType;
17
+
18
+    /**
19
+     * @JsonProperty(String, "custom_parameters")
20
+     */
21
+    private $customParameters;
22
+
23
+    /**
24
+     * @JsonProperty(Integer, "limit")
25
+     */
26
+    private $limit;
27
+
28
+    /**
29
+     * @JsonProperty(String, "list_id")
30
+     */
31
+    private $listId;
32
+
33
+    /**
34
+     * @JsonProperty(Integer, "offset")
35
+     */
36
+    private $offset;
37
+
38
+    /**
39
+     * @JsonProperty(String, "pid")
40
+     */
41
+    private $pid;
42
+
43
+    protected function setUserParams(&$params)
44
+    {
45
+        $this->setUserParam($params, "channel_type", $this->channelType);
46
+        $this->setUserParam($params, "custom_parameters", $this->customParameters);
47
+        $this->setUserParam($params, "limit", $this->limit);
48
+        $this->setUserParam($params, "list_id", $this->listId);
49
+        $this->setUserParam($params, "offset", $this->offset);
50
+        $this->setUserParam($params, "pid", $this->pid);
51
+
52
+    }
53
+
54
+    public function getVersion()
55
+    {
56
+        return "V1";
57
+    }
58
+
59
+    public function getDataType()
60
+    {
61
+        return "JSON";
62
+    }
63
+
64
+    public function getType()
65
+    {
66
+        return "pdd.ddk.oauth.goods.recommend.get";
67
+    }
68
+
69
+    public function setChannelType($channelType)
70
+    {
71
+        $this->channelType = $channelType;
72
+    }
73
+
74
+    public function setCustomParameters($customParameters)
75
+    {
76
+        $this->customParameters = $customParameters;
77
+    }
78
+
79
+    public function setLimit($limit)
80
+    {
81
+        $this->limit = $limit;
82
+    }
83
+
84
+    public function setListId($listId)
85
+    {
86
+        $this->listId = $listId;
87
+    }
88
+
89
+    public function setOffset($offset)
90
+    {
91
+        $this->offset = $offset;
92
+    }
93
+
94
+    public function setPid($pid)
95
+    {
96
+        $this->pid = $pid;
97
+    }
98 98
 
99 99
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddOpenKmsEncryptBatchRequest.php 1 patch
Indentation   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -7,78 +7,78 @@
 block discarded – undo
7 7
 class PddOpenKmsEncryptBatchRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
10
+    {
11 11
 
12
-	}
13
-	/**
14
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddOpenKmsEncryptBatchRequest_DataListItem>, "data_list")
15
-	*/
16
-	private $dataList;
12
+    }
13
+    /**
14
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddOpenKmsEncryptBatchRequest_DataListItem>, "data_list")
15
+     */
16
+    private $dataList;
17 17
 
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "data_list", $this->dataList);
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "data_list", $this->dataList);
21 21
 
22
-	}
22
+    }
23 23
 
24
-	public function getVersion()
25
-	{
26
-		return "V1";
27
-	}
24
+    public function getVersion()
25
+    {
26
+        return "V1";
27
+    }
28 28
 
29
-	public function getDataType()
30
-	{
31
-		return "JSON";
32
-	}
29
+    public function getDataType()
30
+    {
31
+        return "JSON";
32
+    }
33 33
 
34
-	public function getType()
35
-	{
36
-		return "pdd.open.kms.encrypt.batch";
37
-	}
34
+    public function getType()
35
+    {
36
+        return "pdd.open.kms.encrypt.batch";
37
+    }
38 38
 
39
-	public function setDataList($dataList)
40
-	{
41
-		$this->dataList = $dataList;
42
-	}
39
+    public function setDataList($dataList)
40
+    {
41
+        $this->dataList = $dataList;
42
+    }
43 43
 
44 44
 }
45 45
 
46 46
 class PddOpenKmsEncryptBatchRequest_DataListItem extends PopBaseJsonEntity
47 47
 {
48 48
 
49
-	public function __construct()
50
-	{
51
-
52
-	}
53
-
54
-	/**
55
-	* @JsonProperty(String, "data")
56
-	*/
57
-	private $data;
58
-
59
-	/**
60
-	* @JsonProperty(Boolean, "search")
61
-	*/
62
-	private $search;
63
-
64
-	/**
65
-	* @JsonProperty(String, "type")
66
-	*/
67
-	private $type;
68
-
69
-	public function setData($data)
70
-	{
71
-		$this->data = $data;
72
-	}
73
-
74
-	public function setSearch($search)
75
-	{
76
-		$this->search = $search;
77
-	}
78
-
79
-	public function setType($type)
80
-	{
81
-		$this->type = $type;
82
-	}
49
+    public function __construct()
50
+    {
51
+
52
+    }
53
+
54
+    /**
55
+     * @JsonProperty(String, "data")
56
+     */
57
+    private $data;
58
+
59
+    /**
60
+     * @JsonProperty(Boolean, "search")
61
+     */
62
+    private $search;
63
+
64
+    /**
65
+     * @JsonProperty(String, "type")
66
+     */
67
+    private $type;
68
+
69
+    public function setData($data)
70
+    {
71
+        $this->data = $data;
72
+    }
73
+
74
+    public function setSearch($search)
75
+    {
76
+        $this->search = $search;
77
+    }
78
+
79
+    public function setType($type)
80
+    {
81
+        $this->type = $type;
82
+    }
83 83
 
84 84
 }
Please login to merge, or discard this patch.