@@ -13,101 +13,112 @@ class PopOrderSearchRequest
1313 private $ sortType ;
1414 private $ dateType ;
1515
16- public function getApiMethodName () {
16+ public function getApiMethodName ()
17+ {
1718 return "jingdong.pop.order.search " ;
1819 }
1920
20- public function getApiParas () {
21+ public function getApiParas ()
22+ {
2123 return json_encode ($ this ->apiParas );
2224 }
2325
24- public function check () {
25-
26+ public function check ()
27+ {
2628 }
2729
28- public function putOtherTextParam ($ key , $ value ) {
30+ public function putOtherTextParam ($ key , $ value )
31+ {
2932 $ this ->apiParas [$ key ] = $ value ;
3033 $ this ->$ key = $ value ;
3134 }
3235
33- public function setStartDate ($ startDate ) {
36+ public function setStartDate ($ startDate )
37+ {
3438 $ this ->startDate = $ startDate ;
3539 $ this ->apiParas ["start_date " ] = $ startDate ;
3640 }
3741
38- public function getStartDate () {
39- return $ this ->startDate ;
42+ public function getStartDate ()
43+ {
44+ return $ this ->startDate ;
4045 }
4146
4247
43- public function setEndDate ($ endDate ) {
48+ public function setEndDate ($ endDate )
49+ {
4450 $ this ->endDate = $ endDate ;
4551 $ this ->apiParas ["end_date " ] = $ endDate ;
4652 }
4753
48- public function getEndDate () {
54+ public function getEndDate ()
55+ {
4956 return $ this ->endDate ;
5057 }
5158
52- public function setOrderState ($ orderState ) {
59+ public function setOrderState ($ orderState )
60+ {
5361 $ this ->orderState = $ orderState ;
5462 $ this ->apiParas ["order_state " ] = $ orderState ;
5563 }
5664
57- public function getOrderState () {
65+ public function getOrderState ()
66+ {
5867 return $ this ->orderState ;
5968 }
6069
61- public function setOptionalFields ($ optionalFields ) {
70+ public function setOptionalFields ($ optionalFields )
71+ {
6272 $ this ->optionalFields = $ optionalFields ;
6373 $ this ->apiParas ["optional_fields " ] = $ optionalFields ;
6474 }
6575
66- public function getOptionalFields () {
76+ public function getOptionalFields ()
77+ {
6778 return $ this ->optionalFields ;
6879 }
6980
70- public function setPage ($ page ) {
81+ public function setPage ($ page )
82+ {
7183 $ this ->page = $ page ;
7284 $ this ->apiParas ["page " ] = $ page ;
7385 }
7486
75- public function getPage () {
87+ public function getPage ()
88+ {
7689 return $ this ->page ;
7790 }
7891
79- public function setPageSize ($ pageSize ){
92+ public function setPageSize ($ pageSize )
93+ {
8094 $ this ->pageSize = $ pageSize ;
8195 $ this ->apiParas ["page_size " ] = $ pageSize ;
8296 }
8397
84- public function getPageSize (){
85- return $ this ->pageSize ;
98+ public function getPageSize ()
99+ {
100+ return $ this ->pageSize ;
86101 }
87102
88- public function setSortType ($ sortType ){
103+ public function setSortType ($ sortType )
104+ {
89105 $ this ->sortType = $ sortType ;
90106 $ this ->apiParas ["sortType " ] = $ sortType ;
91107 }
92108
93- public function getSortType (){
109+ public function getSortType ()
110+ {
94111 return $ this ->sortType ;
95112 }
96113
97- public function setDateType ($ dateType ) {
114+ public function setDateType ($ dateType )
115+ {
98116 $ this ->dateType = $ dateType ;
99117 $ this ->apiParas ["dateType " ] = $ dateType ;
100118 }
101119
102- public function getDateType () {
120+ public function getDateType ()
121+ {
103122 return $ this ->dateType ;
104123 }
105124}
106-
107-
108-
109-
110-
111-
112-
113-
0 commit comments