Passed
Push — v6 ( 32f4f3...27c58a )
by 光春
03:39
created
src/service/pinduoduo/bin/src/Api/Request/PddGoodsDetailGetRequest.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 PddGoodsDetailGetRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Long, "goods_id")
15
-	*/
16
-	private $goodsId;
17
-
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "goods_id", $this->goodsId);
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.detail.get";
37
-	}
38
-
39
-	public function setGoodsId($goodsId)
40
-	{
41
-		$this->goodsId = $goodsId;
42
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Long, "goods_id")
15
+     */
16
+    private $goodsId;
17
+
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "goods_id", $this->goodsId);
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.detail.get";
37
+    }
38
+
39
+    public function setGoodsId($goodsId)
40
+    {
41
+        $this->goodsId = $goodsId;
42
+    }
43 43
 
44 44
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddAdApiKeywordCreateRequest.php 1 patch
Indentation   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -7,89 +7,89 @@
 block discarded – undo
7 7
 class PddAdApiKeywordCreateRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Long, "adId")
15
-	*/
16
-	private $adId;
17
-
18
-	/**
19
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddAdApiKeywordCreateRequest_KeywordListItem>, "keywordList")
20
-	*/
21
-	private $keywordList;
22
-
23
-	protected function setUserParams(&$params)
24
-	{
25
-		$this->setUserParam($params, "adId", $this->adId);
26
-		$this->setUserParam($params, "keywordList", $this->keywordList);
27
-
28
-	}
29
-
30
-	public function getVersion()
31
-	{
32
-		return "V1";
33
-	}
34
-
35
-	public function getDataType()
36
-	{
37
-		return "JSON";
38
-	}
39
-
40
-	public function getType()
41
-	{
42
-		return "pdd.ad.api.keyword.create";
43
-	}
44
-
45
-	public function setAdId($adId)
46
-	{
47
-		$this->adId = $adId;
48
-	}
49
-
50
-	public function setKeywordList($keywordList)
51
-	{
52
-		$this->keywordList = $keywordList;
53
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Long, "adId")
15
+     */
16
+    private $adId;
17
+
18
+    /**
19
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddAdApiKeywordCreateRequest_KeywordListItem>, "keywordList")
20
+     */
21
+    private $keywordList;
22
+
23
+    protected function setUserParams(&$params)
24
+    {
25
+        $this->setUserParam($params, "adId", $this->adId);
26
+        $this->setUserParam($params, "keywordList", $this->keywordList);
27
+
28
+    }
29
+
30
+    public function getVersion()
31
+    {
32
+        return "V1";
33
+    }
34
+
35
+    public function getDataType()
36
+    {
37
+        return "JSON";
38
+    }
39
+
40
+    public function getType()
41
+    {
42
+        return "pdd.ad.api.keyword.create";
43
+    }
44
+
45
+    public function setAdId($adId)
46
+    {
47
+        $this->adId = $adId;
48
+    }
49
+
50
+    public function setKeywordList($keywordList)
51
+    {
52
+        $this->keywordList = $keywordList;
53
+    }
54 54
 
55 55
 }
56 56
 
57 57
 class PddAdApiKeywordCreateRequest_KeywordListItem extends PopBaseJsonEntity
58 58
 {
59 59
 
60
-	public function __construct()
61
-	{
62
-
63
-	}
64
-
65
-	/**
66
-	* @JsonProperty(Long, "bid")
67
-	*/
68
-	private $bid;
69
-
70
-	/**
71
-	* @JsonProperty(Long, "premiumRate")
72
-	*/
73
-	private $premiumRate;
74
-
75
-	/**
76
-	* @JsonProperty(String, "word")
77
-	*/
78
-	private $word;
79
-
80
-	public function setBid($bid)
81
-	{
82
-		$this->bid = $bid;
83
-	}
84
-
85
-	public function setPremiumRate($premiumRate)
86
-	{
87
-		$this->premiumRate = $premiumRate;
88
-	}
89
-
90
-	public function setWord($word)
91
-	{
92
-		$this->word = $word;
93
-	}
60
+    public function __construct()
61
+    {
62
+
63
+    }
64
+
65
+    /**
66
+     * @JsonProperty(Long, "bid")
67
+     */
68
+    private $bid;
69
+
70
+    /**
71
+     * @JsonProperty(Long, "premiumRate")
72
+     */
73
+    private $premiumRate;
74
+
75
+    /**
76
+     * @JsonProperty(String, "word")
77
+     */
78
+    private $word;
79
+
80
+    public function setBid($bid)
81
+    {
82
+        $this->bid = $bid;
83
+    }
84
+
85
+    public function setPremiumRate($premiumRate)
86
+    {
87
+        $this->premiumRate = $premiumRate;
88
+    }
89
+
90
+    public function setWord($word)
91
+    {
92
+        $this->word = $word;
93
+    }
94 94
 
95 95
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddStockWareDeleteRequest.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 PddStockWareDeleteRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Long, "ware_id")
15
-	*/
16
-	private $wareId;
17
-
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "ware_id", $this->wareId);
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.stock.ware.delete";
37
-	}
38
-
39
-	public function setWareId($wareId)
40
-	{
41
-		$this->wareId = $wareId;
42
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Long, "ware_id")
15
+     */
16
+    private $wareId;
17
+
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "ware_id", $this->wareId);
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.stock.ware.delete";
37
+    }
38
+
39
+    public function setWareId($wareId)
40
+    {
41
+        $this->wareId = $wareId;
42
+    }
43 43
 
44 44
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddGoodsQuantityUpdateRequest.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 PddGoodsQuantityUpdateRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(Long, "goods_id")
15
-	*/
16
-	private $goodsId;
17
-
18
-	/**
19
-	* @JsonProperty(Long, "quantity")
20
-	*/
21
-	private $quantity;
22
-
23
-	/**
24
-	* @JsonProperty(Long, "sku_id")
25
-	*/
26
-	private $skuId;
27
-
28
-	/**
29
-	* @JsonProperty(String, "outer_id")
30
-	*/
31
-	private $outerId;
32
-
33
-	/**
34
-	* @JsonProperty(Integer, "update_type")
35
-	*/
36
-	private $updateType;
37
-
38
-	protected function setUserParams(&$params)
39
-	{
40
-		$this->setUserParam($params, "goods_id", $this->goodsId);
41
-		$this->setUserParam($params, "quantity", $this->quantity);
42
-		$this->setUserParam($params, "sku_id", $this->skuId);
43
-		$this->setUserParam($params, "outer_id", $this->outerId);
44
-		$this->setUserParam($params, "update_type", $this->updateType);
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.goods.quantity.update";
61
-	}
62
-
63
-	public function setGoodsId($goodsId)
64
-	{
65
-		$this->goodsId = $goodsId;
66
-	}
67
-
68
-	public function setQuantity($quantity)
69
-	{
70
-		$this->quantity = $quantity;
71
-	}
72
-
73
-	public function setSkuId($skuId)
74
-	{
75
-		$this->skuId = $skuId;
76
-	}
77
-
78
-	public function setOuterId($outerId)
79
-	{
80
-		$this->outerId = $outerId;
81
-	}
82
-
83
-	public function setUpdateType($updateType)
84
-	{
85
-		$this->updateType = $updateType;
86
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(Long, "goods_id")
15
+     */
16
+    private $goodsId;
17
+
18
+    /**
19
+     * @JsonProperty(Long, "quantity")
20
+     */
21
+    private $quantity;
22
+
23
+    /**
24
+     * @JsonProperty(Long, "sku_id")
25
+     */
26
+    private $skuId;
27
+
28
+    /**
29
+     * @JsonProperty(String, "outer_id")
30
+     */
31
+    private $outerId;
32
+
33
+    /**
34
+     * @JsonProperty(Integer, "update_type")
35
+     */
36
+    private $updateType;
37
+
38
+    protected function setUserParams(&$params)
39
+    {
40
+        $this->setUserParam($params, "goods_id", $this->goodsId);
41
+        $this->setUserParam($params, "quantity", $this->quantity);
42
+        $this->setUserParam($params, "sku_id", $this->skuId);
43
+        $this->setUserParam($params, "outer_id", $this->outerId);
44
+        $this->setUserParam($params, "update_type", $this->updateType);
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.goods.quantity.update";
61
+    }
62
+
63
+    public function setGoodsId($goodsId)
64
+    {
65
+        $this->goodsId = $goodsId;
66
+    }
67
+
68
+    public function setQuantity($quantity)
69
+    {
70
+        $this->quantity = $quantity;
71
+    }
72
+
73
+    public function setSkuId($skuId)
74
+    {
75
+        $this->skuId = $skuId;
76
+    }
77
+
78
+    public function setOuterId($outerId)
79
+    {
80
+        $this->outerId = $outerId;
81
+    }
82
+
83
+    public function setUpdateType($updateType)
84
+    {
85
+        $this->updateType = $updateType;
86
+    }
87 87
 
88 88
 }
Please login to merge, or discard this patch.
pinduoduo/bin/src/Api/Request/PddEinvoiceQueryMallRegisterOrderRequest.php 1 patch
Indentation   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -7,128 +7,128 @@
 block discarded – undo
7 7
 class PddEinvoiceQueryMallRegisterOrderRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
10
+    {
11 11
 
12
-	}
13
-	/**
14
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceQueryMallRegisterOrderRequest_Data, "data")
15
-	*/
16
-	private $data;
12
+    }
13
+    /**
14
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceQueryMallRegisterOrderRequest_Data, "data")
15
+     */
16
+    private $data;
17 17
 
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "data", $this->data);
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "data", $this->data);
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.einvoice.query.mall.register.order";
37
-	}
34
+    public function getType()
35
+    {
36
+        return "pdd.einvoice.query.mall.register.order";
37
+    }
38 38
 
39
-	public function setData($data)
40
-	{
41
-		$this->data = $data;
42
-	}
39
+    public function setData($data)
40
+    {
41
+        $this->data = $data;
42
+    }
43 43
 
44 44
 }
45 45
 
46 46
 class PddEinvoiceQueryMallRegisterOrderRequest_Data extends PopBaseJsonEntity
47 47
 {
48 48
 
49
-	public function __construct()
50
-	{
49
+    public function __construct()
50
+    {
51 51
 
52
-	}
52
+    }
53 53
 
54
-	/**
55
-	* @JsonProperty(Integer, "page")
56
-	*/
57
-	private $page;
54
+    /**
55
+     * @JsonProperty(Integer, "page")
56
+     */
57
+    private $page;
58 58
 
59
-	/**
60
-	* @JsonProperty(Integer, "pageSize")
61
-	*/
62
-	private $pageSize;
59
+    /**
60
+     * @JsonProperty(Integer, "pageSize")
61
+     */
62
+    private $pageSize;
63 63
 
64
-	/**
65
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceQueryMallRegisterOrderRequest_DataRequest, "request")
66
-	*/
67
-	private $request;
64
+    /**
65
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceQueryMallRegisterOrderRequest_DataRequest, "request")
66
+     */
67
+    private $request;
68 68
 
69
-	public function setPage($page)
70
-	{
71
-		$this->page = $page;
72
-	}
69
+    public function setPage($page)
70
+    {
71
+        $this->page = $page;
72
+    }
73 73
 
74
-	public function setPageSize($pageSize)
75
-	{
76
-		$this->pageSize = $pageSize;
77
-	}
74
+    public function setPageSize($pageSize)
75
+    {
76
+        $this->pageSize = $pageSize;
77
+    }
78 78
 
79
-	public function setRequest($request)
80
-	{
81
-		$this->request = $request;
82
-	}
79
+    public function setRequest($request)
80
+    {
81
+        $this->request = $request;
82
+    }
83 83
 
84 84
 }
85 85
 
86 86
 class PddEinvoiceQueryMallRegisterOrderRequest_DataRequest extends PopBaseJsonEntity
87 87
 {
88 88
 
89
-	public function __construct()
90
-	{
91
-
92
-	}
93
-
94
-	/**
95
-	* @JsonProperty(String, "einvoiceApiVersion")
96
-	*/
97
-	private $einvoiceApiVersion;
98
-
99
-	/**
100
-	* @JsonProperty(Long, "endTime")
101
-	*/
102
-	private $endTime;
103
-
104
-	/**
105
-	* @JsonProperty(List<Integer>, "registerStatusList")
106
-	*/
107
-	private $registerStatusList;
108
-
109
-	/**
110
-	* @JsonProperty(Long, "startTime")
111
-	*/
112
-	private $startTime;
113
-
114
-	public function setEinvoiceApiVersion($einvoiceApiVersion)
115
-	{
116
-		$this->einvoiceApiVersion = $einvoiceApiVersion;
117
-	}
118
-
119
-	public function setEndTime($endTime)
120
-	{
121
-		$this->endTime = $endTime;
122
-	}
123
-
124
-	public function setRegisterStatusList($registerStatusList)
125
-	{
126
-		$this->registerStatusList = $registerStatusList;
127
-	}
128
-
129
-	public function setStartTime($startTime)
130
-	{
131
-		$this->startTime = $startTime;
132
-	}
89
+    public function __construct()
90
+    {
91
+
92
+    }
93
+
94
+    /**
95
+     * @JsonProperty(String, "einvoiceApiVersion")
96
+     */
97
+    private $einvoiceApiVersion;
98
+
99
+    /**
100
+     * @JsonProperty(Long, "endTime")
101
+     */
102
+    private $endTime;
103
+
104
+    /**
105
+     * @JsonProperty(List<Integer>, "registerStatusList")
106
+     */
107
+    private $registerStatusList;
108
+
109
+    /**
110
+     * @JsonProperty(Long, "startTime")
111
+     */
112
+    private $startTime;
113
+
114
+    public function setEinvoiceApiVersion($einvoiceApiVersion)
115
+    {
116
+        $this->einvoiceApiVersion = $einvoiceApiVersion;
117
+    }
118
+
119
+    public function setEndTime($endTime)
120
+    {
121
+        $this->endTime = $endTime;
122
+    }
123
+
124
+    public function setRegisterStatusList($registerStatusList)
125
+    {
126
+        $this->registerStatusList = $registerStatusList;
127
+    }
128
+
129
+    public function setStartTime($startTime)
130
+    {
131
+        $this->startTime = $startTime;
132
+    }
133 133
 
134 134
 }
Please login to merge, or discard this patch.
service/pinduoduo/bin/src/Api/Request/PddDdkGoodsZsUnitUrlGenRequest.php 1 patch
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -7,60 +7,60 @@
 block discarded – undo
7 7
 class PddDdkGoodsZsUnitUrlGenRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
10
+    {
11 11
 
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "pid")
15
-	*/
16
-	private $pid;
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "pid")
15
+     */
16
+    private $pid;
17 17
 
18
-	/**
19
-	* @JsonProperty(String, "source_url")
20
-	*/
21
-	private $sourceUrl;
18
+    /**
19
+     * @JsonProperty(String, "source_url")
20
+     */
21
+    private $sourceUrl;
22 22
 
23
-	/**
24
-	* @JsonProperty(String, "custom_parameters")
25
-	*/
26
-	private $customParameters;
23
+    /**
24
+     * @JsonProperty(String, "custom_parameters")
25
+     */
26
+    private $customParameters;
27 27
 
28
-	protected function setUserParams(&$params)
29
-	{
30
-		$this->setUserParam($params, "pid", $this->pid);
31
-		$this->setUserParam($params, "source_url", $this->sourceUrl);
32
-		$this->setUserParam($params, "custom_parameters", $this->customParameters);
28
+    protected function setUserParams(&$params)
29
+    {
30
+        $this->setUserParam($params, "pid", $this->pid);
31
+        $this->setUserParam($params, "source_url", $this->sourceUrl);
32
+        $this->setUserParam($params, "custom_parameters", $this->customParameters);
33 33
 
34
-	}
34
+    }
35 35
 
36
-	public function getVersion()
37
-	{
38
-		return "V1";
39
-	}
36
+    public function getVersion()
37
+    {
38
+        return "V1";
39
+    }
40 40
 
41
-	public function getDataType()
42
-	{
43
-		return "JSON";
44
-	}
41
+    public function getDataType()
42
+    {
43
+        return "JSON";
44
+    }
45 45
 
46
-	public function getType()
47
-	{
48
-		return "pdd.ddk.goods.zs.unit.url.gen";
49
-	}
46
+    public function getType()
47
+    {
48
+        return "pdd.ddk.goods.zs.unit.url.gen";
49
+    }
50 50
 
51
-	public function setPid($pid)
52
-	{
53
-		$this->pid = $pid;
54
-	}
51
+    public function setPid($pid)
52
+    {
53
+        $this->pid = $pid;
54
+    }
55 55
 
56
-	public function setSourceUrl($sourceUrl)
57
-	{
58
-		$this->sourceUrl = $sourceUrl;
59
-	}
56
+    public function setSourceUrl($sourceUrl)
57
+    {
58
+        $this->sourceUrl = $sourceUrl;
59
+    }
60 60
 
61
-	public function setCustomParameters($customParameters)
62
-	{
63
-		$this->customParameters = $customParameters;
64
-	}
61
+    public function setCustomParameters($customParameters)
62
+    {
63
+        $this->customParameters = $customParameters;
64
+    }
65 65
 
66 66
 }
Please login to merge, or discard this patch.
src/service/pinduoduo/bin/src/Api/Request/PddFlightRefundableRequest.php 1 patch
Indentation   +174 added lines, -174 removed lines patch added patch discarded remove patch
@@ -7,185 +7,185 @@
 block discarded – undo
7 7
 class PddFlightRefundableRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "trace_id")
15
-	*/
16
-	private $traceId;
17
-
18
-	/**
19
-	* @JsonProperty(String, "sub_trace_id")
20
-	*/
21
-	private $subTraceId;
22
-
23
-	/**
24
-	* @JsonProperty(String, "out_order_no")
25
-	*/
26
-	private $outOrderNo;
27
-
28
-	/**
29
-	* @JsonProperty(String, "parent_travel_sn")
30
-	*/
31
-	private $parentTravelSn;
32
-
33
-	/**
34
-	* @JsonProperty(Integer, "refund_type")
35
-	*/
36
-	private $refundType;
37
-
38
-	/**
39
-	* @JsonProperty(String, "refund_reason")
40
-	*/
41
-	private $refundReason;
42
-
43
-	/**
44
-	* @JsonProperty(String, "attachment_path")
45
-	*/
46
-	private $attachmentPath;
47
-
48
-	/**
49
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightRefundableRequest_PassengerInfoListItem>, "passenger_info_list")
50
-	*/
51
-	private $passengerInfoList;
52
-
53
-	protected function setUserParams(&$params)
54
-	{
55
-		$this->setUserParam($params, "trace_id", $this->traceId);
56
-		$this->setUserParam($params, "sub_trace_id", $this->subTraceId);
57
-		$this->setUserParam($params, "out_order_no", $this->outOrderNo);
58
-		$this->setUserParam($params, "parent_travel_sn", $this->parentTravelSn);
59
-		$this->setUserParam($params, "refund_type", $this->refundType);
60
-		$this->setUserParam($params, "refund_reason", $this->refundReason);
61
-		$this->setUserParam($params, "attachment_path", $this->attachmentPath);
62
-		$this->setUserParam($params, "passenger_info_list", $this->passengerInfoList);
63
-
64
-	}
65
-
66
-	public function getVersion()
67
-	{
68
-		return "V1";
69
-	}
70
-
71
-	public function getDataType()
72
-	{
73
-		return "JSON";
74
-	}
75
-
76
-	public function getType()
77
-	{
78
-		return "pdd.flight.refundable";
79
-	}
80
-
81
-	public function setTraceId($traceId)
82
-	{
83
-		$this->traceId = $traceId;
84
-	}
85
-
86
-	public function setSubTraceId($subTraceId)
87
-	{
88
-		$this->subTraceId = $subTraceId;
89
-	}
90
-
91
-	public function setOutOrderNo($outOrderNo)
92
-	{
93
-		$this->outOrderNo = $outOrderNo;
94
-	}
95
-
96
-	public function setParentTravelSn($parentTravelSn)
97
-	{
98
-		$this->parentTravelSn = $parentTravelSn;
99
-	}
100
-
101
-	public function setRefundType($refundType)
102
-	{
103
-		$this->refundType = $refundType;
104
-	}
105
-
106
-	public function setRefundReason($refundReason)
107
-	{
108
-		$this->refundReason = $refundReason;
109
-	}
110
-
111
-	public function setAttachmentPath($attachmentPath)
112
-	{
113
-		$this->attachmentPath = $attachmentPath;
114
-	}
115
-
116
-	public function setPassengerInfoList($passengerInfoList)
117
-	{
118
-		$this->passengerInfoList = $passengerInfoList;
119
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "trace_id")
15
+     */
16
+    private $traceId;
17
+
18
+    /**
19
+     * @JsonProperty(String, "sub_trace_id")
20
+     */
21
+    private $subTraceId;
22
+
23
+    /**
24
+     * @JsonProperty(String, "out_order_no")
25
+     */
26
+    private $outOrderNo;
27
+
28
+    /**
29
+     * @JsonProperty(String, "parent_travel_sn")
30
+     */
31
+    private $parentTravelSn;
32
+
33
+    /**
34
+     * @JsonProperty(Integer, "refund_type")
35
+     */
36
+    private $refundType;
37
+
38
+    /**
39
+     * @JsonProperty(String, "refund_reason")
40
+     */
41
+    private $refundReason;
42
+
43
+    /**
44
+     * @JsonProperty(String, "attachment_path")
45
+     */
46
+    private $attachmentPath;
47
+
48
+    /**
49
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightRefundableRequest_PassengerInfoListItem>, "passenger_info_list")
50
+     */
51
+    private $passengerInfoList;
52
+
53
+    protected function setUserParams(&$params)
54
+    {
55
+        $this->setUserParam($params, "trace_id", $this->traceId);
56
+        $this->setUserParam($params, "sub_trace_id", $this->subTraceId);
57
+        $this->setUserParam($params, "out_order_no", $this->outOrderNo);
58
+        $this->setUserParam($params, "parent_travel_sn", $this->parentTravelSn);
59
+        $this->setUserParam($params, "refund_type", $this->refundType);
60
+        $this->setUserParam($params, "refund_reason", $this->refundReason);
61
+        $this->setUserParam($params, "attachment_path", $this->attachmentPath);
62
+        $this->setUserParam($params, "passenger_info_list", $this->passengerInfoList);
63
+
64
+    }
65
+
66
+    public function getVersion()
67
+    {
68
+        return "V1";
69
+    }
70
+
71
+    public function getDataType()
72
+    {
73
+        return "JSON";
74
+    }
75
+
76
+    public function getType()
77
+    {
78
+        return "pdd.flight.refundable";
79
+    }
80
+
81
+    public function setTraceId($traceId)
82
+    {
83
+        $this->traceId = $traceId;
84
+    }
85
+
86
+    public function setSubTraceId($subTraceId)
87
+    {
88
+        $this->subTraceId = $subTraceId;
89
+    }
90
+
91
+    public function setOutOrderNo($outOrderNo)
92
+    {
93
+        $this->outOrderNo = $outOrderNo;
94
+    }
95
+
96
+    public function setParentTravelSn($parentTravelSn)
97
+    {
98
+        $this->parentTravelSn = $parentTravelSn;
99
+    }
100
+
101
+    public function setRefundType($refundType)
102
+    {
103
+        $this->refundType = $refundType;
104
+    }
105
+
106
+    public function setRefundReason($refundReason)
107
+    {
108
+        $this->refundReason = $refundReason;
109
+    }
110
+
111
+    public function setAttachmentPath($attachmentPath)
112
+    {
113
+        $this->attachmentPath = $attachmentPath;
114
+    }
115
+
116
+    public function setPassengerInfoList($passengerInfoList)
117
+    {
118
+        $this->passengerInfoList = $passengerInfoList;
119
+    }
120 120
 
121 121
 }
122 122
 
123 123
 class PddFlightRefundableRequest_PassengerInfoListItem extends PopBaseJsonEntity
124 124
 {
125 125
 
126
-	public function __construct()
127
-	{
128
-
129
-	}
130
-
131
-	/**
132
-	* @JsonProperty(String, "passenger_type")
133
-	*/
134
-	private $passengerType;
135
-
136
-	/**
137
-	* @JsonProperty(String, "name")
138
-	*/
139
-	private $name;
140
-
141
-	/**
142
-	* @JsonProperty(String, "identity_type")
143
-	*/
144
-	private $identityType;
145
-
146
-	/**
147
-	* @JsonProperty(String, "identity_no")
148
-	*/
149
-	private $identityNo;
150
-
151
-	/**
152
-	* @JsonProperty(String, "travel_sn")
153
-	*/
154
-	private $travelSn;
155
-
156
-	/**
157
-	* @JsonProperty(String, "ticket_no")
158
-	*/
159
-	private $ticketNo;
160
-
161
-	public function setPassengerType($passengerType)
162
-	{
163
-		$this->passengerType = $passengerType;
164
-	}
165
-
166
-	public function setName($name)
167
-	{
168
-		$this->name = $name;
169
-	}
170
-
171
-	public function setIdentityType($identityType)
172
-	{
173
-		$this->identityType = $identityType;
174
-	}
175
-
176
-	public function setIdentityNo($identityNo)
177
-	{
178
-		$this->identityNo = $identityNo;
179
-	}
180
-
181
-	public function setTravelSn($travelSn)
182
-	{
183
-		$this->travelSn = $travelSn;
184
-	}
185
-
186
-	public function setTicketNo($ticketNo)
187
-	{
188
-		$this->ticketNo = $ticketNo;
189
-	}
126
+    public function __construct()
127
+    {
128
+
129
+    }
130
+
131
+    /**
132
+     * @JsonProperty(String, "passenger_type")
133
+     */
134
+    private $passengerType;
135
+
136
+    /**
137
+     * @JsonProperty(String, "name")
138
+     */
139
+    private $name;
140
+
141
+    /**
142
+     * @JsonProperty(String, "identity_type")
143
+     */
144
+    private $identityType;
145
+
146
+    /**
147
+     * @JsonProperty(String, "identity_no")
148
+     */
149
+    private $identityNo;
150
+
151
+    /**
152
+     * @JsonProperty(String, "travel_sn")
153
+     */
154
+    private $travelSn;
155
+
156
+    /**
157
+     * @JsonProperty(String, "ticket_no")
158
+     */
159
+    private $ticketNo;
160
+
161
+    public function setPassengerType($passengerType)
162
+    {
163
+        $this->passengerType = $passengerType;
164
+    }
165
+
166
+    public function setName($name)
167
+    {
168
+        $this->name = $name;
169
+    }
170
+
171
+    public function setIdentityType($identityType)
172
+    {
173
+        $this->identityType = $identityType;
174
+    }
175
+
176
+    public function setIdentityNo($identityNo)
177
+    {
178
+        $this->identityNo = $identityNo;
179
+    }
180
+
181
+    public function setTravelSn($travelSn)
182
+    {
183
+        $this->travelSn = $travelSn;
184
+    }
185
+
186
+    public function setTicketNo($ticketNo)
187
+    {
188
+        $this->ticketNo = $ticketNo;
189
+    }
190 190
 
191 191
 }
Please login to merge, or discard this patch.
pinduoduo/bin/src/Api/Request/PddFlightChangeableFlightListRequest.php 1 patch
Indentation   +217 added lines, -217 removed lines patch added patch discarded remove patch
@@ -7,234 +7,234 @@
 block discarded – undo
7 7
 class PddFlightChangeableFlightListRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
11
-
12
-	}
13
-	/**
14
-	* @JsonProperty(String, "trace_id")
15
-	*/
16
-	private $traceId;
17
-
18
-	/**
19
-	* @JsonProperty(String, "sub_trace_id")
20
-	*/
21
-	private $subTraceId;
22
-
23
-	/**
24
-	* @JsonProperty(String, "trip_type")
25
-	*/
26
-	private $tripType;
27
-
28
-	/**
29
-	* @JsonProperty(String, "parent_travel_sn")
30
-	*/
31
-	private $parentTravelSn;
32
-
33
-	/**
34
-	* @JsonProperty(String, "out_order_no")
35
-	*/
36
-	private $outOrderNo;
37
-
38
-	/**
39
-	* @JsonProperty(String, "change_date")
40
-	*/
41
-	private $changeDate;
42
-
43
-	/**
44
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightChangeableFlightListRequest_PassengerInfoListItem>, "passenger_info_list")
45
-	*/
46
-	private $passengerInfoList;
47
-
48
-	protected function setUserParams(&$params)
49
-	{
50
-		$this->setUserParam($params, "trace_id", $this->traceId);
51
-		$this->setUserParam($params, "sub_trace_id", $this->subTraceId);
52
-		$this->setUserParam($params, "trip_type", $this->tripType);
53
-		$this->setUserParam($params, "parent_travel_sn", $this->parentTravelSn);
54
-		$this->setUserParam($params, "out_order_no", $this->outOrderNo);
55
-		$this->setUserParam($params, "change_date", $this->changeDate);
56
-		$this->setUserParam($params, "passenger_info_list", $this->passengerInfoList);
57
-
58
-	}
59
-
60
-	public function getVersion()
61
-	{
62
-		return "V1";
63
-	}
64
-
65
-	public function getDataType()
66
-	{
67
-		return "JSON";
68
-	}
69
-
70
-	public function getType()
71
-	{
72
-		return "pdd.flight.changeable.flight.list";
73
-	}
74
-
75
-	public function setTraceId($traceId)
76
-	{
77
-		$this->traceId = $traceId;
78
-	}
79
-
80
-	public function setSubTraceId($subTraceId)
81
-	{
82
-		$this->subTraceId = $subTraceId;
83
-	}
84
-
85
-	public function setTripType($tripType)
86
-	{
87
-		$this->tripType = $tripType;
88
-	}
89
-
90
-	public function setParentTravelSn($parentTravelSn)
91
-	{
92
-		$this->parentTravelSn = $parentTravelSn;
93
-	}
94
-
95
-	public function setOutOrderNo($outOrderNo)
96
-	{
97
-		$this->outOrderNo = $outOrderNo;
98
-	}
99
-
100
-	public function setChangeDate($changeDate)
101
-	{
102
-		$this->changeDate = $changeDate;
103
-	}
104
-
105
-	public function setPassengerInfoList($passengerInfoList)
106
-	{
107
-		$this->passengerInfoList = $passengerInfoList;
108
-	}
10
+    {
11
+
12
+    }
13
+    /**
14
+     * @JsonProperty(String, "trace_id")
15
+     */
16
+    private $traceId;
17
+
18
+    /**
19
+     * @JsonProperty(String, "sub_trace_id")
20
+     */
21
+    private $subTraceId;
22
+
23
+    /**
24
+     * @JsonProperty(String, "trip_type")
25
+     */
26
+    private $tripType;
27
+
28
+    /**
29
+     * @JsonProperty(String, "parent_travel_sn")
30
+     */
31
+    private $parentTravelSn;
32
+
33
+    /**
34
+     * @JsonProperty(String, "out_order_no")
35
+     */
36
+    private $outOrderNo;
37
+
38
+    /**
39
+     * @JsonProperty(String, "change_date")
40
+     */
41
+    private $changeDate;
42
+
43
+    /**
44
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightChangeableFlightListRequest_PassengerInfoListItem>, "passenger_info_list")
45
+     */
46
+    private $passengerInfoList;
47
+
48
+    protected function setUserParams(&$params)
49
+    {
50
+        $this->setUserParam($params, "trace_id", $this->traceId);
51
+        $this->setUserParam($params, "sub_trace_id", $this->subTraceId);
52
+        $this->setUserParam($params, "trip_type", $this->tripType);
53
+        $this->setUserParam($params, "parent_travel_sn", $this->parentTravelSn);
54
+        $this->setUserParam($params, "out_order_no", $this->outOrderNo);
55
+        $this->setUserParam($params, "change_date", $this->changeDate);
56
+        $this->setUserParam($params, "passenger_info_list", $this->passengerInfoList);
57
+
58
+    }
59
+
60
+    public function getVersion()
61
+    {
62
+        return "V1";
63
+    }
64
+
65
+    public function getDataType()
66
+    {
67
+        return "JSON";
68
+    }
69
+
70
+    public function getType()
71
+    {
72
+        return "pdd.flight.changeable.flight.list";
73
+    }
74
+
75
+    public function setTraceId($traceId)
76
+    {
77
+        $this->traceId = $traceId;
78
+    }
79
+
80
+    public function setSubTraceId($subTraceId)
81
+    {
82
+        $this->subTraceId = $subTraceId;
83
+    }
84
+
85
+    public function setTripType($tripType)
86
+    {
87
+        $this->tripType = $tripType;
88
+    }
89
+
90
+    public function setParentTravelSn($parentTravelSn)
91
+    {
92
+        $this->parentTravelSn = $parentTravelSn;
93
+    }
94
+
95
+    public function setOutOrderNo($outOrderNo)
96
+    {
97
+        $this->outOrderNo = $outOrderNo;
98
+    }
99
+
100
+    public function setChangeDate($changeDate)
101
+    {
102
+        $this->changeDate = $changeDate;
103
+    }
104
+
105
+    public function setPassengerInfoList($passengerInfoList)
106
+    {
107
+        $this->passengerInfoList = $passengerInfoList;
108
+    }
109 109
 
110 110
 }
111 111
 
112 112
 class PddFlightChangeableFlightListRequest_PassengerInfoListItem extends PopBaseJsonEntity
113 113
 {
114 114
 
115
-	public function __construct()
116
-	{
117
-
118
-	}
119
-
120
-	/**
121
-	* @JsonProperty(String, "passenger_type")
122
-	*/
123
-	private $passengerType;
124
-
125
-	/**
126
-	* @JsonProperty(String, "name")
127
-	*/
128
-	private $name;
129
-
130
-	/**
131
-	* @JsonProperty(String, "identity_type")
132
-	*/
133
-	private $identityType;
134
-
135
-	/**
136
-	* @JsonProperty(String, "identity_no")
137
-	*/
138
-	private $identityNo;
139
-
140
-	/**
141
-	* @JsonProperty(String, "travel_sn")
142
-	*/
143
-	private $travelSn;
144
-
145
-	/**
146
-	* @JsonProperty(String, "ticket_no")
147
-	*/
148
-	private $ticketNo;
149
-
150
-	/**
151
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightChangeableFlightListRequest_PassengerInfoListItemFlightListItem>, "flight_list")
152
-	*/
153
-	private $flightList;
154
-
155
-	public function setPassengerType($passengerType)
156
-	{
157
-		$this->passengerType = $passengerType;
158
-	}
159
-
160
-	public function setName($name)
161
-	{
162
-		$this->name = $name;
163
-	}
164
-
165
-	public function setIdentityType($identityType)
166
-	{
167
-		$this->identityType = $identityType;
168
-	}
169
-
170
-	public function setIdentityNo($identityNo)
171
-	{
172
-		$this->identityNo = $identityNo;
173
-	}
174
-
175
-	public function setTravelSn($travelSn)
176
-	{
177
-		$this->travelSn = $travelSn;
178
-	}
179
-
180
-	public function setTicketNo($ticketNo)
181
-	{
182
-		$this->ticketNo = $ticketNo;
183
-	}
184
-
185
-	public function setFlightList($flightList)
186
-	{
187
-		$this->flightList = $flightList;
188
-	}
115
+    public function __construct()
116
+    {
117
+
118
+    }
119
+
120
+    /**
121
+     * @JsonProperty(String, "passenger_type")
122
+     */
123
+    private $passengerType;
124
+
125
+    /**
126
+     * @JsonProperty(String, "name")
127
+     */
128
+    private $name;
129
+
130
+    /**
131
+     * @JsonProperty(String, "identity_type")
132
+     */
133
+    private $identityType;
134
+
135
+    /**
136
+     * @JsonProperty(String, "identity_no")
137
+     */
138
+    private $identityNo;
139
+
140
+    /**
141
+     * @JsonProperty(String, "travel_sn")
142
+     */
143
+    private $travelSn;
144
+
145
+    /**
146
+     * @JsonProperty(String, "ticket_no")
147
+     */
148
+    private $ticketNo;
149
+
150
+    /**
151
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddFlightChangeableFlightListRequest_PassengerInfoListItemFlightListItem>, "flight_list")
152
+     */
153
+    private $flightList;
154
+
155
+    public function setPassengerType($passengerType)
156
+    {
157
+        $this->passengerType = $passengerType;
158
+    }
159
+
160
+    public function setName($name)
161
+    {
162
+        $this->name = $name;
163
+    }
164
+
165
+    public function setIdentityType($identityType)
166
+    {
167
+        $this->identityType = $identityType;
168
+    }
169
+
170
+    public function setIdentityNo($identityNo)
171
+    {
172
+        $this->identityNo = $identityNo;
173
+    }
174
+
175
+    public function setTravelSn($travelSn)
176
+    {
177
+        $this->travelSn = $travelSn;
178
+    }
179
+
180
+    public function setTicketNo($ticketNo)
181
+    {
182
+        $this->ticketNo = $ticketNo;
183
+    }
184
+
185
+    public function setFlightList($flightList)
186
+    {
187
+        $this->flightList = $flightList;
188
+    }
189 189
 
190 190
 }
191 191
 
192 192
 class PddFlightChangeableFlightListRequest_PassengerInfoListItemFlightListItem extends PopBaseJsonEntity
193 193
 {
194 194
 
195
-	public function __construct()
196
-	{
197
-
198
-	}
199
-
200
-	/**
201
-	* @JsonProperty(String, "flight_no")
202
-	*/
203
-	private $flightNo;
204
-
205
-	/**
206
-	* @JsonProperty(Integer, "segment_no")
207
-	*/
208
-	private $segmentNo;
209
-
210
-	/**
211
-	* @JsonProperty(Integer, "sequence_no")
212
-	*/
213
-	private $sequenceNo;
214
-
215
-	/**
216
-	* @JsonProperty(String, "sub_class")
217
-	*/
218
-	private $subClass;
219
-
220
-	public function setFlightNo($flightNo)
221
-	{
222
-		$this->flightNo = $flightNo;
223
-	}
224
-
225
-	public function setSegmentNo($segmentNo)
226
-	{
227
-		$this->segmentNo = $segmentNo;
228
-	}
229
-
230
-	public function setSequenceNo($sequenceNo)
231
-	{
232
-		$this->sequenceNo = $sequenceNo;
233
-	}
234
-
235
-	public function setSubClass($subClass)
236
-	{
237
-		$this->subClass = $subClass;
238
-	}
195
+    public function __construct()
196
+    {
197
+
198
+    }
199
+
200
+    /**
201
+     * @JsonProperty(String, "flight_no")
202
+     */
203
+    private $flightNo;
204
+
205
+    /**
206
+     * @JsonProperty(Integer, "segment_no")
207
+     */
208
+    private $segmentNo;
209
+
210
+    /**
211
+     * @JsonProperty(Integer, "sequence_no")
212
+     */
213
+    private $sequenceNo;
214
+
215
+    /**
216
+     * @JsonProperty(String, "sub_class")
217
+     */
218
+    private $subClass;
219
+
220
+    public function setFlightNo($flightNo)
221
+    {
222
+        $this->flightNo = $flightNo;
223
+    }
224
+
225
+    public function setSegmentNo($segmentNo)
226
+    {
227
+        $this->segmentNo = $segmentNo;
228
+    }
229
+
230
+    public function setSequenceNo($sequenceNo)
231
+    {
232
+        $this->sequenceNo = $sequenceNo;
233
+    }
234
+
235
+    public function setSubClass($subClass)
236
+    {
237
+        $this->subClass = $subClass;
238
+    }
239 239
 
240 240
 }
Please login to merge, or discard this patch.
bin/src/Api/Request/PddEinvoiceVendorRuihongIssueInvoiceRequest.php 1 patch
Indentation   +445 added lines, -445 removed lines patch added patch discarded remove patch
@@ -7,498 +7,498 @@
 block discarded – undo
7 7
 class PddEinvoiceVendorRuihongIssueInvoiceRequest extends PopBaseHttpRequest
8 8
 {
9 9
     public function __construct()
10
-	{
10
+    {
11 11
 
12
-	}
13
-	/**
14
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_Request, "request")
15
-	*/
16
-	private $request;
12
+    }
13
+    /**
14
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_Request, "request")
15
+     */
16
+    private $request;
17 17
 
18
-	protected function setUserParams(&$params)
19
-	{
20
-		$this->setUserParam($params, "request", $this->request);
18
+    protected function setUserParams(&$params)
19
+    {
20
+        $this->setUserParam($params, "request", $this->request);
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.einvoice.vendor.ruihong.issue.invoice";
37
-	}
34
+    public function getType()
35
+    {
36
+        return "pdd.einvoice.vendor.ruihong.issue.invoice";
37
+    }
38 38
 
39
-	public function setRequest($request)
40
-	{
41
-		$this->request = $request;
42
-	}
39
+    public function setRequest($request)
40
+    {
41
+        $this->request = $request;
42
+    }
43 43
 
44 44
 }
45 45
 
46 46
 class PddEinvoiceVendorRuihongIssueInvoiceRequest_Request extends PopBaseJsonEntity
47 47
 {
48 48
 
49
-	public function __construct()
50
-	{
51
-
52
-	}
53
-
54
-	/**
55
-	* @JsonProperty(String, "serialNo")
56
-	*/
57
-	private $serialNo;
58
-
59
-	/**
60
-	* @JsonProperty(String, "postTime")
61
-	*/
62
-	private $postTime;
63
-
64
-	/**
65
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestOrder, "order")
66
-	*/
67
-	private $order;
68
-
69
-	/**
70
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestInvoice, "invoice")
71
-	*/
72
-	private $invoice;
73
-
74
-	/**
75
-	* @JsonProperty(String, "appCode")
76
-	*/
77
-	private $appCode;
78
-
79
-	/**
80
-	* @JsonProperty(String, "cmdName")
81
-	*/
82
-	private $cmdName;
83
-
84
-	/**
85
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestExtendedParams, "extendedParams")
86
-	*/
87
-	private $extendedParams;
88
-
89
-	/**
90
-	* @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestDynamicParams, "dynamicParams")
91
-	*/
92
-	private $dynamicParams;
93
-
94
-	public function setSerialNo($serialNo)
95
-	{
96
-		$this->serialNo = $serialNo;
97
-	}
98
-
99
-	public function setPostTime($postTime)
100
-	{
101
-		$this->postTime = $postTime;
102
-	}
103
-
104
-	public function setOrder($order)
105
-	{
106
-		$this->order = $order;
107
-	}
108
-
109
-	public function setInvoice($invoice)
110
-	{
111
-		$this->invoice = $invoice;
112
-	}
113
-
114
-	public function setAppCode($appCode)
115
-	{
116
-		$this->appCode = $appCode;
117
-	}
118
-
119
-	public function setCmdName($cmdName)
120
-	{
121
-		$this->cmdName = $cmdName;
122
-	}
123
-
124
-	public function setExtendedParams($extendedParams)
125
-	{
126
-		$this->extendedParams = $extendedParams;
127
-	}
128
-
129
-	public function setDynamicParams($dynamicParams)
130
-	{
131
-		$this->dynamicParams = $dynamicParams;
132
-	}
49
+    public function __construct()
50
+    {
51
+
52
+    }
53
+
54
+    /**
55
+     * @JsonProperty(String, "serialNo")
56
+     */
57
+    private $serialNo;
58
+
59
+    /**
60
+     * @JsonProperty(String, "postTime")
61
+     */
62
+    private $postTime;
63
+
64
+    /**
65
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestOrder, "order")
66
+     */
67
+    private $order;
68
+
69
+    /**
70
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestInvoice, "invoice")
71
+     */
72
+    private $invoice;
73
+
74
+    /**
75
+     * @JsonProperty(String, "appCode")
76
+     */
77
+    private $appCode;
78
+
79
+    /**
80
+     * @JsonProperty(String, "cmdName")
81
+     */
82
+    private $cmdName;
83
+
84
+    /**
85
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestExtendedParams, "extendedParams")
86
+     */
87
+    private $extendedParams;
88
+
89
+    /**
90
+     * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestDynamicParams, "dynamicParams")
91
+     */
92
+    private $dynamicParams;
93
+
94
+    public function setSerialNo($serialNo)
95
+    {
96
+        $this->serialNo = $serialNo;
97
+    }
98
+
99
+    public function setPostTime($postTime)
100
+    {
101
+        $this->postTime = $postTime;
102
+    }
103
+
104
+    public function setOrder($order)
105
+    {
106
+        $this->order = $order;
107
+    }
108
+
109
+    public function setInvoice($invoice)
110
+    {
111
+        $this->invoice = $invoice;
112
+    }
113
+
114
+    public function setAppCode($appCode)
115
+    {
116
+        $this->appCode = $appCode;
117
+    }
118
+
119
+    public function setCmdName($cmdName)
120
+    {
121
+        $this->cmdName = $cmdName;
122
+    }
123
+
124
+    public function setExtendedParams($extendedParams)
125
+    {
126
+        $this->extendedParams = $extendedParams;
127
+    }
128
+
129
+    public function setDynamicParams($dynamicParams)
130
+    {
131
+        $this->dynamicParams = $dynamicParams;
132
+    }
133 133
 
134 134
 }
135 135
 
136 136
 class PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestOrder extends PopBaseJsonEntity
137 137
 {
138 138
 
139
-	public function __construct()
140
-	{
139
+    public function __construct()
140
+    {
141 141
 
142
-	}
142
+    }
143 143
 
144
-	/**
145
-	* @JsonProperty(String, "orderNo")
146
-	*/
147
-	private $orderNo;
144
+    /**
145
+     * @JsonProperty(String, "orderNo")
146
+     */
147
+    private $orderNo;
148 148
 
149
-	public function setOrderNo($orderNo)
150
-	{
151
-		$this->orderNo = $orderNo;
152
-	}
149
+    public function setOrderNo($orderNo)
150
+    {
151
+        $this->orderNo = $orderNo;
152
+    }
153 153
 
154 154
 }
155 155
 
156 156
 class PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestInvoice extends PopBaseJsonEntity
157 157
 {
158 158
 
159
-	public function __construct()
160
-	{
161
-
162
-	}
163
-
164
-	/**
165
-	* @JsonProperty(String, "taxpayerCode")
166
-	*/
167
-	private $taxpayerCode;
168
-
169
-	/**
170
-	* @JsonProperty(String, "taxpayerName")
171
-	*/
172
-	private $taxpayerName;
173
-
174
-	/**
175
-	* @JsonProperty(String, "taxpayerAddress")
176
-	*/
177
-	private $taxpayerAddress;
178
-
179
-	/**
180
-	* @JsonProperty(String, "taxpayerTel")
181
-	*/
182
-	private $taxpayerTel;
183
-
184
-	/**
185
-	* @JsonProperty(String, "taxpayerBankName")
186
-	*/
187
-	private $taxpayerBankName;
188
-
189
-	/**
190
-	* @JsonProperty(String, "taxpayerBankAccount")
191
-	*/
192
-	private $taxpayerBankAccount;
193
-
194
-	/**
195
-	* @JsonProperty(String, "customerName")
196
-	*/
197
-	private $customerName;
198
-
199
-	/**
200
-	* @JsonProperty(String, "customerCode")
201
-	*/
202
-	private $customerCode;
203
-
204
-	/**
205
-	* @JsonProperty(String, "customerAddress")
206
-	*/
207
-	private $customerAddress;
208
-
209
-	/**
210
-	* @JsonProperty(String, "customerTel")
211
-	*/
212
-	private $customerTel;
213
-
214
-	/**
215
-	* @JsonProperty(String, "customerBankName")
216
-	*/
217
-	private $customerBankName;
218
-
219
-	/**
220
-	* @JsonProperty(String, "customerBankAccount")
221
-	*/
222
-	private $customerBankAccount;
223
-
224
-	/**
225
-	* @JsonProperty(String, "invoiceType")
226
-	*/
227
-	private $invoiceType;
228
-
229
-	/**
230
-	* @JsonProperty(String, "drawer")
231
-	*/
232
-	private $drawer;
233
-
234
-	/**
235
-	* @JsonProperty(String, "payee")
236
-	*/
237
-	private $payee;
238
-
239
-	/**
240
-	* @JsonProperty(String, "reviewer")
241
-	*/
242
-	private $reviewer;
243
-
244
-	/**
245
-	* @JsonProperty(String, "totalAmount")
246
-	*/
247
-	private $totalAmount;
248
-
249
-	/**
250
-	* @JsonProperty(String, "remark")
251
-	*/
252
-	private $remark;
253
-
254
-	/**
255
-	* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestInvoiceItemsItem>, "items")
256
-	*/
257
-	private $items;
258
-
259
-	public function setTaxpayerCode($taxpayerCode)
260
-	{
261
-		$this->taxpayerCode = $taxpayerCode;
262
-	}
263
-
264
-	public function setTaxpayerName($taxpayerName)
265
-	{
266
-		$this->taxpayerName = $taxpayerName;
267
-	}
268
-
269
-	public function setTaxpayerAddress($taxpayerAddress)
270
-	{
271
-		$this->taxpayerAddress = $taxpayerAddress;
272
-	}
273
-
274
-	public function setTaxpayerTel($taxpayerTel)
275
-	{
276
-		$this->taxpayerTel = $taxpayerTel;
277
-	}
278
-
279
-	public function setTaxpayerBankName($taxpayerBankName)
280
-	{
281
-		$this->taxpayerBankName = $taxpayerBankName;
282
-	}
283
-
284
-	public function setTaxpayerBankAccount($taxpayerBankAccount)
285
-	{
286
-		$this->taxpayerBankAccount = $taxpayerBankAccount;
287
-	}
288
-
289
-	public function setCustomerName($customerName)
290
-	{
291
-		$this->customerName = $customerName;
292
-	}
293
-
294
-	public function setCustomerCode($customerCode)
295
-	{
296
-		$this->customerCode = $customerCode;
297
-	}
298
-
299
-	public function setCustomerAddress($customerAddress)
300
-	{
301
-		$this->customerAddress = $customerAddress;
302
-	}
303
-
304
-	public function setCustomerTel($customerTel)
305
-	{
306
-		$this->customerTel = $customerTel;
307
-	}
308
-
309
-	public function setCustomerBankName($customerBankName)
310
-	{
311
-		$this->customerBankName = $customerBankName;
312
-	}
313
-
314
-	public function setCustomerBankAccount($customerBankAccount)
315
-	{
316
-		$this->customerBankAccount = $customerBankAccount;
317
-	}
318
-
319
-	public function setInvoiceType($invoiceType)
320
-	{
321
-		$this->invoiceType = $invoiceType;
322
-	}
323
-
324
-	public function setDrawer($drawer)
325
-	{
326
-		$this->drawer = $drawer;
327
-	}
328
-
329
-	public function setPayee($payee)
330
-	{
331
-		$this->payee = $payee;
332
-	}
333
-
334
-	public function setReviewer($reviewer)
335
-	{
336
-		$this->reviewer = $reviewer;
337
-	}
338
-
339
-	public function setTotalAmount($totalAmount)
340
-	{
341
-		$this->totalAmount = $totalAmount;
342
-	}
343
-
344
-	public function setRemark($remark)
345
-	{
346
-		$this->remark = $remark;
347
-	}
348
-
349
-	public function setItems($items)
350
-	{
351
-		$this->items = $items;
352
-	}
159
+    public function __construct()
160
+    {
161
+
162
+    }
163
+
164
+    /**
165
+     * @JsonProperty(String, "taxpayerCode")
166
+     */
167
+    private $taxpayerCode;
168
+
169
+    /**
170
+     * @JsonProperty(String, "taxpayerName")
171
+     */
172
+    private $taxpayerName;
173
+
174
+    /**
175
+     * @JsonProperty(String, "taxpayerAddress")
176
+     */
177
+    private $taxpayerAddress;
178
+
179
+    /**
180
+     * @JsonProperty(String, "taxpayerTel")
181
+     */
182
+    private $taxpayerTel;
183
+
184
+    /**
185
+     * @JsonProperty(String, "taxpayerBankName")
186
+     */
187
+    private $taxpayerBankName;
188
+
189
+    /**
190
+     * @JsonProperty(String, "taxpayerBankAccount")
191
+     */
192
+    private $taxpayerBankAccount;
193
+
194
+    /**
195
+     * @JsonProperty(String, "customerName")
196
+     */
197
+    private $customerName;
198
+
199
+    /**
200
+     * @JsonProperty(String, "customerCode")
201
+     */
202
+    private $customerCode;
203
+
204
+    /**
205
+     * @JsonProperty(String, "customerAddress")
206
+     */
207
+    private $customerAddress;
208
+
209
+    /**
210
+     * @JsonProperty(String, "customerTel")
211
+     */
212
+    private $customerTel;
213
+
214
+    /**
215
+     * @JsonProperty(String, "customerBankName")
216
+     */
217
+    private $customerBankName;
218
+
219
+    /**
220
+     * @JsonProperty(String, "customerBankAccount")
221
+     */
222
+    private $customerBankAccount;
223
+
224
+    /**
225
+     * @JsonProperty(String, "invoiceType")
226
+     */
227
+    private $invoiceType;
228
+
229
+    /**
230
+     * @JsonProperty(String, "drawer")
231
+     */
232
+    private $drawer;
233
+
234
+    /**
235
+     * @JsonProperty(String, "payee")
236
+     */
237
+    private $payee;
238
+
239
+    /**
240
+     * @JsonProperty(String, "reviewer")
241
+     */
242
+    private $reviewer;
243
+
244
+    /**
245
+     * @JsonProperty(String, "totalAmount")
246
+     */
247
+    private $totalAmount;
248
+
249
+    /**
250
+     * @JsonProperty(String, "remark")
251
+     */
252
+    private $remark;
253
+
254
+    /**
255
+     * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestInvoiceItemsItem>, "items")
256
+     */
257
+    private $items;
258
+
259
+    public function setTaxpayerCode($taxpayerCode)
260
+    {
261
+        $this->taxpayerCode = $taxpayerCode;
262
+    }
263
+
264
+    public function setTaxpayerName($taxpayerName)
265
+    {
266
+        $this->taxpayerName = $taxpayerName;
267
+    }
268
+
269
+    public function setTaxpayerAddress($taxpayerAddress)
270
+    {
271
+        $this->taxpayerAddress = $taxpayerAddress;
272
+    }
273
+
274
+    public function setTaxpayerTel($taxpayerTel)
275
+    {
276
+        $this->taxpayerTel = $taxpayerTel;
277
+    }
278
+
279
+    public function setTaxpayerBankName($taxpayerBankName)
280
+    {
281
+        $this->taxpayerBankName = $taxpayerBankName;
282
+    }
283
+
284
+    public function setTaxpayerBankAccount($taxpayerBankAccount)
285
+    {
286
+        $this->taxpayerBankAccount = $taxpayerBankAccount;
287
+    }
288
+
289
+    public function setCustomerName($customerName)
290
+    {
291
+        $this->customerName = $customerName;
292
+    }
293
+
294
+    public function setCustomerCode($customerCode)
295
+    {
296
+        $this->customerCode = $customerCode;
297
+    }
298
+
299
+    public function setCustomerAddress($customerAddress)
300
+    {
301
+        $this->customerAddress = $customerAddress;
302
+    }
303
+
304
+    public function setCustomerTel($customerTel)
305
+    {
306
+        $this->customerTel = $customerTel;
307
+    }
308
+
309
+    public function setCustomerBankName($customerBankName)
310
+    {
311
+        $this->customerBankName = $customerBankName;
312
+    }
313
+
314
+    public function setCustomerBankAccount($customerBankAccount)
315
+    {
316
+        $this->customerBankAccount = $customerBankAccount;
317
+    }
318
+
319
+    public function setInvoiceType($invoiceType)
320
+    {
321
+        $this->invoiceType = $invoiceType;
322
+    }
323
+
324
+    public function setDrawer($drawer)
325
+    {
326
+        $this->drawer = $drawer;
327
+    }
328
+
329
+    public function setPayee($payee)
330
+    {
331
+        $this->payee = $payee;
332
+    }
333
+
334
+    public function setReviewer($reviewer)
335
+    {
336
+        $this->reviewer = $reviewer;
337
+    }
338
+
339
+    public function setTotalAmount($totalAmount)
340
+    {
341
+        $this->totalAmount = $totalAmount;
342
+    }
343
+
344
+    public function setRemark($remark)
345
+    {
346
+        $this->remark = $remark;
347
+    }
348
+
349
+    public function setItems($items)
350
+    {
351
+        $this->items = $items;
352
+    }
353 353
 
354 354
 }
355 355
 
356 356
 class PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestInvoiceItemsItem extends PopBaseJsonEntity
357 357
 {
358 358
 
359
-	public function __construct()
360
-	{
361
-
362
-	}
363
-
364
-	/**
365
-	* @JsonProperty(String, "type")
366
-	*/
367
-	private $type;
368
-
369
-	/**
370
-	* @JsonProperty(String, "catalogCode")
371
-	*/
372
-	private $catalogCode;
373
-
374
-	/**
375
-	* @JsonProperty(String, "name")
376
-	*/
377
-	private $name;
378
-
379
-	/**
380
-	* @JsonProperty(String, "spec")
381
-	*/
382
-	private $spec;
383
-
384
-	/**
385
-	* @JsonProperty(String, "price")
386
-	*/
387
-	private $price;
388
-
389
-	/**
390
-	* @JsonProperty(String, "quantity")
391
-	*/
392
-	private $quantity;
393
-
394
-	/**
395
-	* @JsonProperty(String, "uom")
396
-	*/
397
-	private $uom;
398
-
399
-	/**
400
-	* @JsonProperty(String, "taxRate")
401
-	*/
402
-	private $taxRate;
403
-
404
-	/**
405
-	* @JsonProperty(String, "amount")
406
-	*/
407
-	private $amount;
408
-
409
-	/**
410
-	* @JsonProperty(String, "preferentialPolicyFlg")
411
-	*/
412
-	private $preferentialPolicyFlg;
413
-
414
-	/**
415
-	* @JsonProperty(String, "addedValueTaxFlg")
416
-	*/
417
-	private $addedValueTaxFlg;
418
-
419
-	/**
420
-	* @JsonProperty(String, "zeroTaxRateFlg")
421
-	*/
422
-	private $zeroTaxRateFlg;
423
-
424
-	public function setType($type)
425
-	{
426
-		$this->type = $type;
427
-	}
428
-
429
-	public function setCatalogCode($catalogCode)
430
-	{
431
-		$this->catalogCode = $catalogCode;
432
-	}
433
-
434
-	public function setName($name)
435
-	{
436
-		$this->name = $name;
437
-	}
438
-
439
-	public function setSpec($spec)
440
-	{
441
-		$this->spec = $spec;
442
-	}
443
-
444
-	public function setPrice($price)
445
-	{
446
-		$this->price = $price;
447
-	}
448
-
449
-	public function setQuantity($quantity)
450
-	{
451
-		$this->quantity = $quantity;
452
-	}
453
-
454
-	public function setUom($uom)
455
-	{
456
-		$this->uom = $uom;
457
-	}
458
-
459
-	public function setTaxRate($taxRate)
460
-	{
461
-		$this->taxRate = $taxRate;
462
-	}
463
-
464
-	public function setAmount($amount)
465
-	{
466
-		$this->amount = $amount;
467
-	}
468
-
469
-	public function setPreferentialPolicyFlg($preferentialPolicyFlg)
470
-	{
471
-		$this->preferentialPolicyFlg = $preferentialPolicyFlg;
472
-	}
473
-
474
-	public function setAddedValueTaxFlg($addedValueTaxFlg)
475
-	{
476
-		$this->addedValueTaxFlg = $addedValueTaxFlg;
477
-	}
478
-
479
-	public function setZeroTaxRateFlg($zeroTaxRateFlg)
480
-	{
481
-		$this->zeroTaxRateFlg = $zeroTaxRateFlg;
482
-	}
359
+    public function __construct()
360
+    {
361
+
362
+    }
363
+
364
+    /**
365
+     * @JsonProperty(String, "type")
366
+     */
367
+    private $type;
368
+
369
+    /**
370
+     * @JsonProperty(String, "catalogCode")
371
+     */
372
+    private $catalogCode;
373
+
374
+    /**
375
+     * @JsonProperty(String, "name")
376
+     */
377
+    private $name;
378
+
379
+    /**
380
+     * @JsonProperty(String, "spec")
381
+     */
382
+    private $spec;
383
+
384
+    /**
385
+     * @JsonProperty(String, "price")
386
+     */
387
+    private $price;
388
+
389
+    /**
390
+     * @JsonProperty(String, "quantity")
391
+     */
392
+    private $quantity;
393
+
394
+    /**
395
+     * @JsonProperty(String, "uom")
396
+     */
397
+    private $uom;
398
+
399
+    /**
400
+     * @JsonProperty(String, "taxRate")
401
+     */
402
+    private $taxRate;
403
+
404
+    /**
405
+     * @JsonProperty(String, "amount")
406
+     */
407
+    private $amount;
408
+
409
+    /**
410
+     * @JsonProperty(String, "preferentialPolicyFlg")
411
+     */
412
+    private $preferentialPolicyFlg;
413
+
414
+    /**
415
+     * @JsonProperty(String, "addedValueTaxFlg")
416
+     */
417
+    private $addedValueTaxFlg;
418
+
419
+    /**
420
+     * @JsonProperty(String, "zeroTaxRateFlg")
421
+     */
422
+    private $zeroTaxRateFlg;
423
+
424
+    public function setType($type)
425
+    {
426
+        $this->type = $type;
427
+    }
428
+
429
+    public function setCatalogCode($catalogCode)
430
+    {
431
+        $this->catalogCode = $catalogCode;
432
+    }
433
+
434
+    public function setName($name)
435
+    {
436
+        $this->name = $name;
437
+    }
438
+
439
+    public function setSpec($spec)
440
+    {
441
+        $this->spec = $spec;
442
+    }
443
+
444
+    public function setPrice($price)
445
+    {
446
+        $this->price = $price;
447
+    }
448
+
449
+    public function setQuantity($quantity)
450
+    {
451
+        $this->quantity = $quantity;
452
+    }
453
+
454
+    public function setUom($uom)
455
+    {
456
+        $this->uom = $uom;
457
+    }
458
+
459
+    public function setTaxRate($taxRate)
460
+    {
461
+        $this->taxRate = $taxRate;
462
+    }
463
+
464
+    public function setAmount($amount)
465
+    {
466
+        $this->amount = $amount;
467
+    }
468
+
469
+    public function setPreferentialPolicyFlg($preferentialPolicyFlg)
470
+    {
471
+        $this->preferentialPolicyFlg = $preferentialPolicyFlg;
472
+    }
473
+
474
+    public function setAddedValueTaxFlg($addedValueTaxFlg)
475
+    {
476
+        $this->addedValueTaxFlg = $addedValueTaxFlg;
477
+    }
478
+
479
+    public function setZeroTaxRateFlg($zeroTaxRateFlg)
480
+    {
481
+        $this->zeroTaxRateFlg = $zeroTaxRateFlg;
482
+    }
483 483
 
484 484
 }
485 485
 
486 486
 class PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestExtendedParams extends PopBaseJsonEntity
487 487
 {
488 488
 
489
-	public function __construct()
490
-	{
489
+    public function __construct()
490
+    {
491 491
 
492
-	}
492
+    }
493 493
 
494 494
 }
495 495
 
496 496
 class PddEinvoiceVendorRuihongIssueInvoiceRequest_RequestDynamicParams extends PopBaseJsonEntity
497 497
 {
498 498
 
499
-	public function __construct()
500
-	{
499
+    public function __construct()
500
+    {
501 501
 
502
-	}
502
+    }
503 503
 
504 504
 }
Please login to merge, or discard this patch.