作者 lackoxygen

feat:取消must return

@@ -704,7 +704,7 @@ temp; @@ -704,7 +704,7 @@ temp;
704 $template[] = "\t" . ' * @param array $params'; 704 $template[] = "\t" . ' * @param array $params';
705 $template[] = "\t" . ' * @return ResultSet'; 705 $template[] = "\t" . ' * @return ResultSet';
706 $template[] = "\t" . ' */'; 706 $template[] = "\t" . ' */';
707 - $template[] = "\t" . 'function ' . $subSelf->name . '(array $params = []): ResultSet;'; 707 + $template[] = "\t" . 'function ' . $subSelf->name . '(array $params = []);';
708 708
709 return $template; 709 return $template;
710 } 710 }
@@ -15,7 +15,7 @@ interface AddressInterface @@ -15,7 +15,7 @@ interface AddressInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function qualificationSettle(array $params = []): ResultSet; 18 + public function qualificationSettle(array $params = []);
19 19
20 /** 20 /**
21 * 店铺修改售后地址接口 21 * 店铺修改售后地址接口
@@ -23,7 +23,7 @@ interface AddressInterface @@ -23,7 +23,7 @@ interface AddressInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function addressUpdate(array $params = []): ResultSet; 26 + public function addressUpdate(array $params = []);
27 27
28 /** 28 /**
29 * 创建店铺地址库 29 * 创建店铺地址库
@@ -31,7 +31,7 @@ interface AddressInterface @@ -31,7 +31,7 @@ interface AddressInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function addressCreate(array $params = []): ResultSet; 34 + public function addressCreate(array $params = []);
35 35
36 /** 36 /**
37 * 获取商家推广链接接口 37 * 获取商家推广链接接口
@@ -39,7 +39,7 @@ interface AddressInterface @@ -39,7 +39,7 @@ interface AddressInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function memberGetShopShortLink(array $params = []): ResultSet; 42 + public function memberGetShopShortLink(array $params = []);
43 43
44 /** 44 /**
45 * 售后地址列表接口 45 * 售后地址列表接口
@@ -47,7 +47,7 @@ interface AddressInterface @@ -47,7 +47,7 @@ interface AddressInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function addressList(array $params = []): ResultSet; 50 + public function addressList(array $params = []);
51 51
52 /** 52 /**
53 * 获取店铺后台供商家发布商品的类目 53 * 获取店铺后台供商家发布商品的类目
@@ -55,7 +55,7 @@ interface AddressInterface @@ -55,7 +55,7 @@ interface AddressInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function shopGetShopCategory(array $params = []): ResultSet; 58 + public function shopGetShopCategory(array $params = []);
59 59
60 /** 60 /**
61 * 获取店铺的已授权品牌列表 61 * 获取店铺的已授权品牌列表
@@ -63,5 +63,5 @@ interface AddressInterface @@ -63,5 +63,5 @@ interface AddressInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function shopBrandList(array $params = []): ResultSet; 66 + public function shopBrandList(array $params = []);
67 } 67 }
@@ -15,7 +15,7 @@ interface AfterSaleInterface @@ -15,7 +15,7 @@ interface AfterSaleInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function afterSaleOperate(array $params = []): ResultSet; 18 + public function afterSaleOperate(array $params = []);
19 19
20 /** 20 /**
21 * 提供给商家获取售后单详情信息 21 * 提供给商家获取售后单详情信息
@@ -23,7 +23,7 @@ interface AfterSaleInterface @@ -23,7 +23,7 @@ interface AfterSaleInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function afterSaleDetail(array $params = []): ResultSet; 26 + public function afterSaleDetail(array $params = []);
27 27
28 /** 28 /**
29 * 售后列表接口 29 * 售后列表接口
@@ -31,7 +31,7 @@ interface AfterSaleInterface @@ -31,7 +31,7 @@ interface AfterSaleInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function afterSaleList(array $params = []): ResultSet; 34 + public function afterSaleList(array $params = []);
35 35
36 /** 36 /**
37 * 店家给售后单添加备注 37 * 店家给售后单添加备注
@@ -39,7 +39,7 @@ interface AfterSaleInterface @@ -39,7 +39,7 @@ interface AfterSaleInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function afterSaleAddOrderRemark(array $params = []): ResultSet; 42 + public function afterSaleAddOrderRemark(array $params = []);
43 43
44 /** 44 /**
45 * 打开售后通道,使用户可以发起超级售后 45 * 打开售后通道,使用户可以发起超级售后
@@ -47,7 +47,7 @@ interface AfterSaleInterface @@ -47,7 +47,7 @@ interface AfterSaleInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function afterSaleOpenAfterSaleChannel(array $params = []): ResultSet; 50 + public function afterSaleOpenAfterSaleChannel(array $params = []);
51 51
52 /** 52 /**
53 * 商家确认是否收到换货 53 * 商家确认是否收到换货
@@ -55,7 +55,7 @@ interface AfterSaleInterface @@ -55,7 +55,7 @@ interface AfterSaleInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function afterSaleBuyerExchangeConfirm(array $params = []): ResultSet; 58 + public function afterSaleBuyerExchangeConfirm(array $params = []);
59 59
60 /** 60 /**
61 * 申请物流拦截 61 * 申请物流拦截
@@ -63,7 +63,7 @@ interface AfterSaleInterface @@ -63,7 +63,7 @@ interface AfterSaleInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function afterSaleApplyLogisticsIntercept(array $params = []): ResultSet; 66 + public function afterSaleApplyLogisticsIntercept(array $params = []);
67 67
68 /** 68 /**
69 * 商家在未发货仅退款途中发送取消发货的状态 69 * 商家在未发货仅退款途中发送取消发货的状态
@@ -71,7 +71,7 @@ interface AfterSaleInterface @@ -71,7 +71,7 @@ interface AfterSaleInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function afterSaleCancelSendGoodsSuccess(array $params = []): ResultSet; 74 + public function afterSaleCancelSendGoodsSuccess(array $params = []);
75 75
76 /** 76 /**
77 * 商家确认售后单对应的用户退货入仓成功 77 * 商家确认售后单对应的用户退货入仓成功
@@ -79,7 +79,7 @@ interface AfterSaleInterface @@ -79,7 +79,7 @@ interface AfterSaleInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function afterSaleReturnGoodsToWareHouseSuccess(array $params = []): ResultSet; 82 + public function afterSaleReturnGoodsToWareHouseSuccess(array $params = []);
83 83
84 /** 84 /**
85 * 售后单列表查询推荐使用/afterSale/List 85 * 售后单列表查询推荐使用/afterSale/List
@@ -87,7 +87,7 @@ interface AfterSaleInterface @@ -87,7 +87,7 @@ interface AfterSaleInterface
87 * @param array $params 87 * @param array $params
88 * @return ResultSet 88 * @return ResultSet
89 */ 89 */
90 - public function tradeRefundListSearch(array $params = []): ResultSet; 90 + public function tradeRefundListSearch(array $params = []);
91 91
92 /** 92 /**
93 * 商家延时收获接口 93 * 商家延时收获接口
@@ -95,7 +95,7 @@ interface AfterSaleInterface @@ -95,7 +95,7 @@ interface AfterSaleInterface
95 * @param array $params 95 * @param array $params
96 * @return ResultSet 96 * @return ResultSet
97 */ 97 */
98 - public function afterSaleTimeExtend(array $params = []): ResultSet; 98 + public function afterSaleTimeExtend(array $params = []);
99 99
100 /** 100 /**
101 * 商家处理换货请求接口 101 * 商家处理换货请求接口
@@ -103,7 +103,7 @@ interface AfterSaleInterface @@ -103,7 +103,7 @@ interface AfterSaleInterface
103 * @param array $params 103 * @param array $params
104 * @return ResultSet 104 * @return ResultSet
105 */ 105 */
106 - public function afterSaleBuyerExchange(array $params = []): ResultSet; 106 + public function afterSaleBuyerExchange(array $params = []);
107 107
108 /** 108 /**
109 * 售后审核处理原因列表查询接口 109 * 售后审核处理原因列表查询接口
@@ -111,7 +111,7 @@ interface AfterSaleInterface @@ -111,7 +111,7 @@ interface AfterSaleInterface
111 * @param array $params 111 * @param array $params
112 * @return ResultSet 112 * @return ResultSet
113 */ 113 */
114 - public function afterSaleRejectReasonCodeList(array $params = []): ResultSet; 114 + public function afterSaleRejectReasonCodeList(array $params = []);
115 115
116 /** 116 /**
117 * 售后商家发货 117 * 售后商家发货
@@ -119,5 +119,5 @@ interface AfterSaleInterface @@ -119,5 +119,5 @@ interface AfterSaleInterface
119 * @param array $params 119 * @param array $params
120 * @return ResultSet 120 * @return ResultSet
121 */ 121 */
122 - public function afterSaleFillLogistics(array $params = []): ResultSet; 122 + public function afterSaleFillLogistics(array $params = []);
123 } 123 }
@@ -15,5 +15,5 @@ interface AntispamInterface @@ -15,5 +15,5 @@ interface AntispamInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function antispamUserLogin(array $params = []): ResultSet; 18 + public function antispamUserLogin(array $params = []);
19 } 19 }
@@ -15,7 +15,7 @@ interface BtasInterface @@ -15,7 +15,7 @@ interface BtasInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function btasShipping(array $params = []): ResultSet; 18 + public function btasShipping(array $params = []);
19 19
20 /** 20 /**
21 * ⁣查询订单是否需要质检 21 * ⁣查询订单是否需要质检
@@ -23,7 +23,7 @@ interface BtasInterface @@ -23,7 +23,7 @@ interface BtasInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function btasGetInspectionOrder(array $params = []): ResultSet; 26 + public function btasGetInspectionOrder(array $params = []);
27 27
28 /** 28 /**
29 * 图片质检送检 29 * 图片质检送检
@@ -31,7 +31,7 @@ interface BtasInterface @@ -31,7 +31,7 @@ interface BtasInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function btasSaveInspectionOnline(array $params = []): ResultSet; 34 + public function btasSaveInspectionOnline(array $params = []);
35 35
36 /** 36 /**
37 * 获取订单的质检结果 37 * 获取订单的质检结果
@@ -39,7 +39,7 @@ interface BtasInterface @@ -39,7 +39,7 @@ interface BtasInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function btasGetOrderInspectionResult(array $params = []): ResultSet; 42 + public function btasGetOrderInspectionResult(array $params = []);
43 43
44 /** 44 /**
45 * 商家送检调用 45 * 商家送检调用
@@ -47,7 +47,7 @@ interface BtasInterface @@ -47,7 +47,7 @@ interface BtasInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function btasSaveInspectionInfo(array $params = []): ResultSet; 50 + public function btasSaveInspectionInfo(array $params = []);
51 51
52 /** 52 /**
53 * 获取可图片鉴定的品牌 53 * 获取可图片鉴定的品牌
@@ -55,5 +55,5 @@ interface BtasInterface @@ -55,5 +55,5 @@ interface BtasInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function btasListBrand(array $params = []): ResultSet; 58 + public function btasListBrand(array $params = []);
59 } 59 }
@@ -14,7 +14,7 @@ interface BuyinInterface @@ -14,7 +14,7 @@ interface BuyinInterface
14 * @param array $params 14 * @param array $params
15 * @return ResultSet 15 * @return ResultSet
16 */ 16 */
17 - function buyinSimplePlan(array $params = []): ResultSet; 17 + function buyinSimplePlan(array $params = []);
18 18
19 /** 19 /**
20 * 商家可参与的团长活动查询接口 20 * 商家可参与的团长活动查询接口
@@ -22,7 +22,7 @@ interface BuyinInterface @@ -22,7 +22,7 @@ interface BuyinInterface
22 * @param array $params 22 * @param array $params
23 * @return ResultSet 23 * @return ResultSet
24 */ 24 */
25 - function buyinShopActivityList(array $params = []): ResultSet; 25 + function buyinShopActivityList(array $params = []);
26 26
27 /** 27 /**
28 * 商家侧获取团长活动详情 28 * 商家侧获取团长活动详情
@@ -30,7 +30,7 @@ interface BuyinInterface @@ -30,7 +30,7 @@ interface BuyinInterface
30 * @param array $params 30 * @param array $params
31 * @return ResultSet 31 * @return ResultSet
32 */ 32 */
33 - function buyinShopActivityDetail(array $params = []): ResultSet; 33 + function buyinShopActivityDetail(array $params = []);
34 34
35 /** 35 /**
36 * 商品团长活动提报接口 36 * 商品团长活动提报接口
@@ -38,7 +38,7 @@ interface BuyinInterface @@ -38,7 +38,7 @@ interface BuyinInterface
38 * @param array $params 38 * @param array $params
39 * @return ResultSet 39 * @return ResultSet
40 */ 40 */
41 - function buyinApplyActivities(array $params = []): ResultSet; 41 + function buyinApplyActivities(array $params = []);
42 42
43 /** 43 /**
44 * 延长推广待处理/已处理记录查询 44 * 延长推广待处理/已处理记录查询
@@ -46,7 +46,7 @@ interface BuyinInterface @@ -46,7 +46,7 @@ interface BuyinInterface
46 * @param array $params 46 * @param array $params
47 * @return ResultSet 47 * @return ResultSet
48 */ 48 */
49 - function buyinActivityProductExtendList(array $params = []): ResultSet; 49 + function buyinActivityProductExtendList(array $params = []);
50 50
51 /** 51 /**
52 * 商家处理团长活动商品的推广延期申请 52 * 商家处理团长活动商品的推广延期申请
@@ -54,7 +54,7 @@ interface BuyinInterface @@ -54,7 +54,7 @@ interface BuyinInterface
54 * @param array $params 54 * @param array $params
55 * @return ResultSet 55 * @return ResultSet
56 */ 56 */
57 - function buyinActivityProductExtendApprove(array $params = []): ResultSet; 57 + function buyinActivityProductExtendApprove(array $params = []);
58 58
59 /** 59 /**
60 * 创建/修改商品定向计划 60 * 创建/修改商品定向计划
@@ -62,7 +62,7 @@ interface BuyinInterface @@ -62,7 +62,7 @@ interface BuyinInterface
62 * @param array $params 62 * @param array $params
63 * @return ResultSet 63 * @return ResultSet
64 */ 64 */
65 - function buyinCreateOrUpdateOrienPlan(array $params = []): ResultSet; 65 + function buyinCreateOrUpdateOrienPlan(array $params = []);
66 66
67 /** 67 /**
68 * 商品定向计划查询 68 * 商品定向计划查询
@@ -70,7 +70,7 @@ interface BuyinInterface @@ -70,7 +70,7 @@ interface BuyinInterface
70 * @param array $params 70 * @param array $params
71 * @return ResultSet 71 * @return ResultSet
72 */ 72 */
73 - function buyinOrienPlanList(array $params = []): ResultSet; 73 + function buyinOrienPlanList(array $params = []);
74 74
75 /** 75 /**
76 * 商品定向计划管理 76 * 商品定向计划管理
@@ -78,7 +78,7 @@ interface BuyinInterface @@ -78,7 +78,7 @@ interface BuyinInterface
78 * @param array $params 78 * @param array $params
79 * @return ResultSet 79 * @return ResultSet
80 */ 80 */
81 - function buyinOrienPlanCtrl(array $params = []): ResultSet; 81 + function buyinOrienPlanCtrl(array $params = []);
82 82
83 /** 83 /**
84 * 查询定向计划作者列表 84 * 查询定向计划作者列表
@@ -86,7 +86,7 @@ interface BuyinInterface @@ -86,7 +86,7 @@ interface BuyinInterface
86 * @param array $params 86 * @param array $params
87 * @return ResultSet 87 * @return ResultSet
88 */ 88 */
89 - function buyinOrienPlanAuthors(array $params = []): ResultSet; 89 + function buyinOrienPlanAuthors(array $params = []);
90 90
91 /** 91 /**
92 * 向指定定向计划中添加达人 92 * 向指定定向计划中添加达人
@@ -94,7 +94,7 @@ interface BuyinInterface @@ -94,7 +94,7 @@ interface BuyinInterface
94 * @param array $params 94 * @param array $params
95 * @return ResultSet 95 * @return ResultSet
96 */ 96 */
97 - function buyinOrienPlanAuthorsAdd(array $params = []): ResultSet; 97 + function buyinOrienPlanAuthorsAdd(array $params = []);
98 98
99 /** 99 /**
100 * 定向计划达人申请审核 100 * 定向计划达人申请审核
@@ -102,7 +102,7 @@ interface BuyinInterface @@ -102,7 +102,7 @@ interface BuyinInterface
102 * @param array $params 102 * @param array $params
103 * @return ResultSet 103 * @return ResultSet
104 */ 104 */
105 - function buyinOrienPlanAudit(array $params = []): ResultSet; 105 + function buyinOrienPlanAudit(array $params = []);
106 106
107 /** 107 /**
108 * 创建/修改商品专属推广计划 108 * 创建/修改商品专属推广计划
@@ -110,7 +110,7 @@ interface BuyinInterface @@ -110,7 +110,7 @@ interface BuyinInterface
110 * @param array $params 110 * @param array $params
111 * @return ResultSet 111 * @return ResultSet
112 */ 112 */
113 - function buyinExclusivePlan(array $params = []): ResultSet; 113 + function buyinExclusivePlan(array $params = []);
114 114
115 /** 115 /**
116 * 店铺专属达人管理 116 * 店铺专属达人管理
@@ -118,7 +118,7 @@ interface BuyinInterface @@ -118,7 +118,7 @@ interface BuyinInterface
118 * @param array $params 118 * @param array $params
119 * @return ResultSet 119 * @return ResultSet
120 */ 120 */
121 - function buyinExclusivePlanAuthorOperate(array $params = []): ResultSet; 121 + function buyinExclusivePlanAuthorOperate(array $params = []);
122 122
123 /** 123 /**
124 * 团长活动创建/编辑接口 124 * 团长活动创建/编辑接口
@@ -126,7 +126,7 @@ interface BuyinInterface @@ -126,7 +126,7 @@ interface BuyinInterface
126 * @param array $params 126 * @param array $params
127 * @return ResultSet 127 * @return ResultSet
128 */ 128 */
129 - function allianceColonelActivityCreateOrUpdate(array $params = []): ResultSet; 129 + function allianceColonelActivityCreateOrUpdate(array $params = []);
130 130
131 /** 131 /**
132 * 创建活动时候可选择的类目接口 132 * 创建活动时候可选择的类目接口
@@ -134,7 +134,7 @@ interface BuyinInterface @@ -134,7 +134,7 @@ interface BuyinInterface
134 * @param array $params 134 * @param array $params
135 * @return ResultSet 135 * @return ResultSet
136 */ 136 */
137 - function allianceActivityProductCategoryList(array $params = []): ResultSet; 137 + function allianceActivityProductCategoryList(array $params = []);
138 138
139 /** 139 /**
140 * 团长活动查询接口 140 * 团长活动查询接口
@@ -142,7 +142,7 @@ interface BuyinInterface @@ -142,7 +142,7 @@ interface BuyinInterface
142 * @param array $params 142 * @param array $params
143 * @return ResultSet 143 * @return ResultSet
144 */ 144 */
145 - function allianceInstituteColonelActivityList(array $params = []): ResultSet; 145 + function allianceInstituteColonelActivityList(array $params = []);
146 146
147 /** 147 /**
148 * 专属团长活动删除接口(下线+删除) 148 * 专属团长活动删除接口(下线+删除)
@@ -150,7 +150,7 @@ interface BuyinInterface @@ -150,7 +150,7 @@ interface BuyinInterface
150 * @param array $params 150 * @param array $params
151 * @return ResultSet 151 * @return ResultSet
152 */ 152 */
153 - function allianceInstituteColonelActivityOperate(array $params = []): ResultSet; 153 + function allianceInstituteColonelActivityOperate(array $params = []);
154 154
155 /** 155 /**
156 * 活动商品查询接口 156 * 活动商品查询接口
@@ -158,7 +158,7 @@ interface BuyinInterface @@ -158,7 +158,7 @@ interface BuyinInterface
158 * @param array $params 158 * @param array $params
159 * @return ResultSet 159 * @return ResultSet
160 */ 160 */
161 - function allianceColonelActivityProduct(array $params = []): ResultSet; 161 + function allianceColonelActivityProduct(array $params = []);
162 162
163 /** 163 /**
164 * 专属团长活动商品审核接口 164 * 专属团长活动商品审核接口
@@ -166,7 +166,7 @@ interface BuyinInterface @@ -166,7 +166,7 @@ interface BuyinInterface
166 * @param array $params 166 * @param array $params
167 * @return ResultSet 167 * @return ResultSet
168 */ 168 */
169 - function allianceColonelActivityProductAudit(array $params = []): ResultSet; 169 + function allianceColonelActivityProductAudit(array $params = []);
170 170
171 /** 171 /**
172 * 查询团长活动特殊申请 172 * 查询团长活动特殊申请
@@ -174,7 +174,7 @@ interface BuyinInterface @@ -174,7 +174,7 @@ interface BuyinInterface
174 * @param array $params 174 * @param array $params
175 * @return ResultSet 175 * @return ResultSet
176 */ 176 */
177 - function buyinColonel/specialApplyList(array $params = []): ResultSet; 177 + function buyinColonel/specialApplyList(array $params = []);
178 178
179 /** 179 /**
180 * 专属团长活动商品延时接口 180 * 专属团长活动商品延时接口
@@ -182,7 +182,7 @@ interface BuyinInterface @@ -182,7 +182,7 @@ interface BuyinInterface
182 * @param array $params 182 * @param array $params
183 * @return ResultSet 183 * @return ResultSet
184 */ 184 */
185 - function allianceColonelActivityProductExtension(array $params = []): ResultSet; 185 + function allianceColonelActivityProductExtension(array $params = []);
186 186
187 /** 187 /**
188 * 团长活动特殊申请审核 188 * 团长活动特殊申请审核
@@ -190,7 +190,7 @@ interface BuyinInterface @@ -190,7 +190,7 @@ interface BuyinInterface
190 * @param array $params 190 * @param array $params
191 * @return ResultSet 191 * @return ResultSet
192 */ 192 */
193 - function buyinColonel/specialApplyDeal(array $params = []): ResultSet; 193 + function buyinColonel/specialApplyDeal(array $params = []);
194 194
195 /** 195 /**
196 * 团长可参与的二级团长活动查询接口 196 * 团长可参与的二级团长活动查询接口
@@ -198,7 +198,7 @@ interface BuyinInterface @@ -198,7 +198,7 @@ interface BuyinInterface
198 * @param array $params 198 * @param array $params
199 * @return ResultSet 199 * @return ResultSet
200 */ 200 */
201 - function buyinOriginColonelEnrollableActivityList(array $params = []): ResultSet; 201 + function buyinOriginColonelEnrollableActivityList(array $params = []);
202 202
203 /** 203 /**
204 * 获取团长活动详情 204 * 获取团长活动详情
@@ -206,7 +206,7 @@ interface BuyinInterface @@ -206,7 +206,7 @@ interface BuyinInterface
206 * @param array $params 206 * @param array $params
207 * @return ResultSet 207 * @return ResultSet
208 */ 208 */
209 - function buyinColonelActivityDetail(array $params = []): ResultSet; 209 + function buyinColonelActivityDetail(array $params = []);
210 210
211 /** 211 /**
212 * 团长获取可提报二级团长活动的商品列表 212 * 团长获取可提报二级团长活动的商品列表
@@ -214,7 +214,7 @@ interface BuyinInterface @@ -214,7 +214,7 @@ interface BuyinInterface
214 * @param array $params 214 * @param array $params
215 * @return ResultSet 215 * @return ResultSet
216 */ 216 */
217 - function buyinOriginColonelUnappliedProductList(array $params = []): ResultSet; 217 + function buyinOriginColonelUnappliedProductList(array $params = []);
218 218
219 /** 219 /**
220 * 团长报名二级团长活动 220 * 团长报名二级团长活动
@@ -222,7 +222,7 @@ interface BuyinInterface @@ -222,7 +222,7 @@ interface BuyinInterface
222 * @param array $params 222 * @param array $params
223 * @return ResultSet 223 * @return ResultSet
224 */ 224 */
225 - function buyinOriginColonelApplyActivities(array $params = []): ResultSet; 225 + function buyinOriginColonelApplyActivities(array $params = []);
226 226
227 /** 227 /**
228 * 一级团长查询提报活动商品 228 * 一级团长查询提报活动商品
@@ -230,7 +230,7 @@ interface BuyinInterface @@ -230,7 +230,7 @@ interface BuyinInterface
230 * @param array $params 230 * @param array $params
231 * @return ResultSet 231 * @return ResultSet
232 */ 232 */
233 - function buyinActivityProductList(array $params = []): ResultSet; 233 + function buyinActivityProductList(array $params = []);
234 234
235 /** 235 /**
236 * 一级团长取消活动提报申请接口 236 * 一级团长取消活动提报申请接口
@@ -238,7 +238,7 @@ interface BuyinInterface @@ -238,7 +238,7 @@ interface BuyinInterface
238 * @param array $params 238 * @param array $params
239 * @return ResultSet 239 * @return ResultSet
240 */ 240 */
241 - function buyinActivityProductCancel(array $params = []): ResultSet; 241 + function buyinActivityProductCancel(array $params = []);
242 242
243 /** 243 /**
244 * 检索精选联盟商品 244 * 检索精选联盟商品
@@ -246,7 +246,7 @@ interface BuyinInterface @@ -246,7 +246,7 @@ interface BuyinInterface
246 * @param array $params 246 * @param array $params
247 * @return ResultSet 247 * @return ResultSet
248 */ 248 */
249 - function allianceMaterialsProductsSearch(array $params = []): ResultSet; 249 + function allianceMaterialsProductsSearch(array $params = []);
250 250
251 /** 251 /**
252 * 商品推广 普通计划查询 252 * 商品推广 普通计划查询
@@ -254,7 +254,7 @@ interface BuyinInterface @@ -254,7 +254,7 @@ interface BuyinInterface
254 * @param array $params 254 * @param array $params
255 * @return ResultSet 255 * @return ResultSet
256 */ 256 */
257 - function buyinSimplePlanList(array $params = []): ResultSet; 257 + function buyinSimplePlanList(array $params = []);
258 258
259 /** 259 /**
260 * 批量查询推广商品详情 260 * 批量查询推广商品详情
@@ -262,7 +262,7 @@ interface BuyinInterface @@ -262,7 +262,7 @@ interface BuyinInterface
262 * @param array $params 262 * @param array $params
263 * @return ResultSet 263 * @return ResultSet
264 */ 264 */
265 - function allianceMaterialsProductsDetails(array $params = []): ResultSet; 265 + function allianceMaterialsProductsDetails(array $params = []);
266 266
267 /** 267 /**
268 * 查询商品 SKU 268 * 查询商品 SKU
@@ -270,7 +270,7 @@ interface BuyinInterface @@ -270,7 +270,7 @@ interface BuyinInterface
270 * @param array $params 270 * @param array $params
271 * @return ResultSet 271 * @return ResultSet
272 */ 272 */
273 - function buyinProductSkus(array $params = []): ResultSet; 273 + function buyinProductSkus(array $params = []);
274 274
275 /** 275 /**
276 * 类目查询 276 * 类目查询
@@ -278,7 +278,7 @@ interface BuyinInterface @@ -278,7 +278,7 @@ interface BuyinInterface
278 * @param array $params 278 * @param array $params
279 * @return ResultSet 279 * @return ResultSet
280 */ 280 */
281 - function allianceMaterialsProductCategory(array $params = []): ResultSet; 281 + function allianceMaterialsProductCategory(array $params = []);
282 282
283 /** 283 /**
284 * 商品状态查询 284 * 商品状态查询
@@ -286,7 +286,7 @@ interface BuyinInterface @@ -286,7 +286,7 @@ interface BuyinInterface
286 * @param array $params 286 * @param array $params
287 * @return ResultSet 287 * @return ResultSet
288 */ 288 */
289 - function buyinMaterialsProductStatus(array $params = []): ResultSet; 289 + function buyinMaterialsProductStatus(array $params = []);
290 290
291 /** 291 /**
292 * 检索精选联盟商品,需达人授权 292 * 检索精选联盟商品,需达人授权
@@ -294,7 +294,7 @@ interface BuyinInterface @@ -294,7 +294,7 @@ interface BuyinInterface
294 * @param array $params 294 * @param array $params
295 * @return ResultSet 295 * @return ResultSet
296 */ 296 */
297 - function buyinKolMaterialsProductsSearch(array $params = []): ResultSet; 297 + function buyinKolMaterialsProductsSearch(array $params = []);
298 298
299 /** 299 /**
300 * 查询达人视角商品详情 300 * 查询达人视角商品详情
@@ -302,7 +302,7 @@ interface BuyinInterface @@ -302,7 +302,7 @@ interface BuyinInterface
302 * @param array $params 302 * @param array $params
303 * @return ResultSet 303 * @return ResultSet
304 */ 304 */
305 - function buyinKolMaterialsProductsDetails(array $params = []): ResultSet; 305 + function buyinKolMaterialsProductsDetails(array $params = []);
306 306
307 /** 307 /**
308 * 【即将下线】查询机构联盟订单 308 * 【即将下线】查询机构联盟订单
@@ -310,7 +310,7 @@ interface BuyinInterface @@ -310,7 +310,7 @@ interface BuyinInterface
310 * @param array $params 310 * @param array $params
311 * @return ResultSet 311 * @return ResultSet
312 */ 312 */
313 - function buyinQueryInstituteOrders(array $params = []): ResultSet; 313 + function buyinQueryInstituteOrders(array $params = []);
314 314
315 /** 315 /**
316 * 查询MCN机构订单 316 * 查询MCN机构订单
@@ -318,7 +318,7 @@ interface BuyinInterface @@ -318,7 +318,7 @@ interface BuyinInterface
318 * @param array $params 318 * @param array $params
319 * @return ResultSet 319 * @return ResultSet
320 */ 320 */
321 - function buyinInstituteOrderMCN(array $params = []): ResultSet; 321 + function buyinInstituteOrderMCN(array $params = []);
322 322
323 /** 323 /**
324 * 机构查询团长订单 324 * 机构查询团长订单
@@ -326,7 +326,7 @@ interface BuyinInterface @@ -326,7 +326,7 @@ interface BuyinInterface
326 * @param array $params 326 * @param array $params
327 * @return ResultSet 327 * @return ResultSet
328 */ 328 */
329 - function buyinInstituteOrderColonel(array $params = []): ResultSet; 329 + function buyinInstituteOrderColonel(array $params = []);
330 330
331 /** 331 /**
332 * 商品选品来源转链 332 * 商品选品来源转链
@@ -334,7 +334,7 @@ interface BuyinInterface @@ -334,7 +334,7 @@ interface BuyinInterface
334 * @param array $params 334 * @param array $params
335 * @return ResultSet 335 * @return ResultSet
336 */ 336 */
337 - function buyinInstPickSourceConvert(array $params = []): ResultSet; 337 + function buyinInstPickSourceConvert(array $params = []);
338 338
339 /** 339 /**
340 * 机构选品GMV查询接口 340 * 机构选品GMV查询接口
@@ -342,7 +342,7 @@ interface BuyinInterface @@ -342,7 +342,7 @@ interface BuyinInterface
342 * @param array $params 342 * @param array $params
343 * @return ResultSet 343 * @return ResultSet
344 */ 344 */
345 - function buyinInstGmv(array $params = []): ResultSet; 345 + function buyinInstGmv(array $params = []);
346 346
347 /** 347 /**
348 * 机构选品GMV明细查询接口 348 * 机构选品GMV明细查询接口
@@ -350,7 +350,7 @@ interface BuyinInterface @@ -350,7 +350,7 @@ interface BuyinInterface
350 * @param array $params 350 * @param array $params
351 * @return ResultSet 351 * @return ResultSet
352 */ 352 */
353 - function buyinInstGmvDetail(array $params = []): ResultSet; 353 + function buyinInstGmvDetail(array $params = []);
354 354
355 /** 355 /**
356 * 达人PID创建 356 * 达人PID创建
@@ -358,7 +358,7 @@ interface BuyinInterface @@ -358,7 +358,7 @@ interface BuyinInterface
358 * @param array $params 358 * @param array $params
359 * @return ResultSet 359 * @return ResultSet
360 */ 360 */
361 - function buyinKolPidCreate(array $params = []): ResultSet; 361 + function buyinKolPidCreate(array $params = []);
362 362
363 /** 363 /**
364 * 达人PID查询接口 364 * 达人PID查询接口
@@ -366,7 +366,7 @@ interface BuyinInterface @@ -366,7 +366,7 @@ interface BuyinInterface
366 * @param array $params 366 * @param array $params
367 * @return ResultSet 367 * @return ResultSet
368 */ 368 */
369 - function buyinKolPidList(array $params = []): ResultSet; 369 + function buyinKolPidList(array $params = []);
370 370
371 /** 371 /**
372 * 达人PID 编辑 372 * 达人PID 编辑
@@ -374,7 +374,7 @@ interface BuyinInterface @@ -374,7 +374,7 @@ interface BuyinInterface
374 * @param array $params 374 * @param array $params
375 * @return ResultSet 375 * @return ResultSet
376 */ 376 */
377 - function buyinKolPidEdit(array $params = []): ResultSet; 377 + function buyinKolPidEdit(array $params = []);
378 378
379 /** 379 /**
380 * 达人PID删除 380 * 达人PID删除
@@ -382,7 +382,7 @@ interface BuyinInterface @@ -382,7 +382,7 @@ interface BuyinInterface
382 * @param array $params 382 * @param array $params
383 * @return ResultSet 383 * @return ResultSet
384 */ 384 */
385 - function buyinKolPidDel(array $params = []): ResultSet; 385 + function buyinKolPidDel(array $params = []);
386 386
387 /** 387 /**
388 * 商品口令转商品解析 388 * 商品口令转商品解析
@@ -390,7 +390,7 @@ interface BuyinInterface @@ -390,7 +390,7 @@ interface BuyinInterface
390 * @param array $params 390 * @param array $params
391 * @return ResultSet 391 * @return ResultSet
392 */ 392 */
393 - function buyinShareCommandParse(array $params = []): ResultSet; 393 + function buyinShareCommandParse(array $params = []);
394 394
395 /** 395 /**
396 * 达人商品分销转链 396 * 达人商品分销转链
@@ -398,7 +398,7 @@ interface BuyinInterface @@ -398,7 +398,7 @@ interface BuyinInterface
398 * @param array $params 398 * @param array $params
399 * @return ResultSet 399 * @return ResultSet
400 */ 400 */
401 - function buyinKolProductShare(array $params = []): ResultSet; 401 + function buyinKolProductShare(array $params = []);
402 402
403 /** 403 /**
404 * 机构PID创建 404 * 机构PID创建
@@ -406,7 +406,7 @@ interface BuyinInterface @@ -406,7 +406,7 @@ interface BuyinInterface
406 * @param array $params 406 * @param array $params
407 * @return ResultSet 407 * @return ResultSet
408 */ 408 */
409 - function buyinInstitutePidCreate(array $params = []): ResultSet; 409 + function buyinInstitutePidCreate(array $params = []);
410 410
411 /** 411 /**
412 * 机构PID查询接口 412 * 机构PID查询接口
@@ -414,7 +414,7 @@ interface BuyinInterface @@ -414,7 +414,7 @@ interface BuyinInterface
414 * @param array $params 414 * @param array $params
415 * @return ResultSet 415 * @return ResultSet
416 */ 416 */
417 - function buyinInstitutePidList(array $params = []): ResultSet; 417 + function buyinInstitutePidList(array $params = []);
418 418
419 /** 419 /**
420 * 机构PID 编辑 420 * 机构PID 编辑
@@ -422,7 +422,7 @@ interface BuyinInterface @@ -422,7 +422,7 @@ interface BuyinInterface
422 * @param array $params 422 * @param array $params
423 * @return ResultSet 423 * @return ResultSet
424 */ 424 */
425 - function buyinInstitutePidEdit(array $params = []): ResultSet; 425 + function buyinInstitutePidEdit(array $params = []);
426 426
427 /** 427 /**
428 * 机构PID删除 428 * 机构PID删除
@@ -430,7 +430,7 @@ interface BuyinInterface @@ -430,7 +430,7 @@ interface BuyinInterface
430 * @param array $params 430 * @param array $params
431 * @return ResultSet 431 * @return ResultSet
432 */ 432 */
433 - function buyinInstitutePidDel(array $params = []): ResultSet; 433 + function buyinInstitutePidDel(array $params = []);
434 434
435 /** 435 /**
436 * 直播间分销物料查询 436 * 直播间分销物料查询
@@ -438,7 +438,7 @@ interface BuyinInterface @@ -438,7 +438,7 @@ interface BuyinInterface
438 * @param array $params 438 * @param array $params
439 * @return ResultSet 439 * @return ResultSet
440 */ 440 */
441 - function buyinLiveShareMaterial(array $params = []): ResultSet; 441 + function buyinLiveShareMaterial(array $params = []);
442 442
443 /** 443 /**
444 * 分销直播间商品列表 444 * 分销直播间商品列表
@@ -446,7 +446,7 @@ interface BuyinInterface @@ -446,7 +446,7 @@ interface BuyinInterface
446 * @param array $params 446 * @param array $params
447 * @return ResultSet 447 * @return ResultSet
448 */ 448 */
449 - function buyinDistributionLiveProductList(array $params = []): ResultSet; 449 + function buyinDistributionLiveProductList(array $params = []);
450 450
451 /** 451 /**
452 * 机构获取达人直播间分享链接 452 * 机构获取达人直播间分享链接
@@ -454,7 +454,7 @@ interface BuyinInterface @@ -454,7 +454,7 @@ interface BuyinInterface
454 * @param array $params 454 * @param array $params
455 * @return ResultSet 455 * @return ResultSet
456 */ 456 */
457 - function buyinInstituteLiveShare(array $params = []): ResultSet; 457 + function buyinInstituteLiveShare(array $params = []);
458 458
459 /** 459 /**
460 * 查询抖客直播间分销订单 460 * 查询抖客直播间分销订单
@@ -462,7 +462,7 @@ interface BuyinInterface @@ -462,7 +462,7 @@ interface BuyinInterface
462 * @param array $params 462 * @param array $params
463 * @return ResultSet 463 * @return ResultSet
464 */ 464 */
465 - function buyinInstituteOrderAds(array $params = []): ResultSet; 465 + function buyinInstituteOrderAds(array $params = []);
466 466
467 /** 467 /**
468 * 查询达人的直播间分销、商品分销、活动页分销订单 468 * 查询达人的直播间分销、商品分销、活动页分销订单
@@ -470,7 +470,7 @@ interface BuyinInterface @@ -470,7 +470,7 @@ interface BuyinInterface
470 * @param array $params 470 * @param array $params
471 * @return ResultSet 471 * @return ResultSet
472 */ 472 */
473 - function buyinKolOrderAds(array $params = []): ResultSet; 473 + function buyinKolOrderAds(array $params = []);
474 474
475 /** 475 /**
476 * 店铺会员绑定渠道关系创建 476 * 店铺会员绑定渠道关系创建
@@ -478,7 +478,7 @@ interface BuyinInterface @@ -478,7 +478,7 @@ interface BuyinInterface
478 * @param array $params 478 * @param array $params
479 * @return ResultSet 479 * @return ResultSet
480 */ 480 */
481 - function buyinShopPidMemberCreate(array $params = []): ResultSet; 481 + function buyinShopPidMemberCreate(array $params = []);
482 482
483 /** 483 /**
484 * 获取达人直播间分享链接 484 * 获取达人直播间分享链接
@@ -486,7 +486,7 @@ interface BuyinInterface @@ -486,7 +486,7 @@ interface BuyinInterface
486 * @param array $params 486 * @param array $params
487 * @return ResultSet 487 * @return ResultSet
488 */ 488 */
489 - function buyinKolLiveShare(array $params = []): ResultSet; 489 + function buyinKolLiveShare(array $params = []);
490 490
491 /** 491 /**
492 * 团长托管商品审核 492 * 团长托管商品审核
@@ -494,7 +494,7 @@ interface BuyinInterface @@ -494,7 +494,7 @@ interface BuyinInterface
494 * @param array $params 494 * @param array $params
495 * @return ResultSet 495 * @return ResultSet
496 */ 496 */
497 - function buyinMHandleTrusteeshipApply(array $params = []): ResultSet; 497 + function buyinMHandleTrusteeshipApply(array $params = []);
498 498
499 /** 499 /**
500 * 团长托管商品查询 500 * 团长托管商品查询
@@ -502,7 +502,7 @@ interface BuyinInterface @@ -502,7 +502,7 @@ interface BuyinInterface
502 * @param array $params 502 * @param array $params
503 * @return ResultSet 503 * @return ResultSet
504 */ 504 */
505 - function buyinColonel/trusteeshipList(array $params = []): ResultSet; 505 + function buyinColonel/trusteeshipList(array $params = []);
506 506
507 /** 507 /**
508 * 选品订单明细查询接口 508 * 选品订单明细查询接口
@@ -510,7 +510,7 @@ interface BuyinInterface @@ -510,7 +510,7 @@ interface BuyinInterface
510 * @param array $params 510 * @param array $params
511 * @return ResultSet 511 * @return ResultSet
512 */ 512 */
513 - function buyinInstituteOrderPick(array $params = []): ResultSet; 513 + function buyinInstituteOrderPick(array $params = []);
514 514
515 /** 515 /**
516 * 机构直播预告转链 516 * 机构直播预告转链
@@ -518,7 +518,7 @@ interface BuyinInterface @@ -518,7 +518,7 @@ interface BuyinInterface
518 * @param array $params 518 * @param array $params
519 * @return ResultSet 519 * @return ResultSet
520 */ 520 */
521 - function buyinInstituteLivePreviewShare(array $params = []): ResultSet; 521 + function buyinInstituteLivePreviewShare(array $params = []);
522 522
523 /** 523 /**
524 * 达人直播预告转链 524 * 达人直播预告转链
@@ -526,7 +526,7 @@ interface BuyinInterface @@ -526,7 +526,7 @@ interface BuyinInterface
526 * @param array $params 526 * @param array $params
527 * @return ResultSet 527 * @return ResultSet
528 */ 528 */
529 - function buyinKolLivePreviewShare(array $params = []): ResultSet; 529 + function buyinKolLivePreviewShare(array $params = []);
530 530
531 /** 531 /**
532 * 活动页转链接口 532 * 活动页转链接口
@@ -534,5 +534,5 @@ interface BuyinInterface @@ -534,5 +534,5 @@ interface BuyinInterface
534 * @param array $params 534 * @param array $params
535 * @return ResultSet 535 * @return ResultSet
536 */ 536 */
537 - function buyinActivityShareConvert(array $params = []): ResultSet; 537 + function buyinActivityShareConvert(array $params = []);
538 } 538 }
@@ -15,7 +15,7 @@ interface CouponsInterface @@ -15,7 +15,7 @@ interface CouponsInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function couponsCancelVerify(array $params = []): ResultSet; 18 + public function couponsCancelVerify(array $params = []);
19 19
20 /** 20 /**
21 * 卡券废弃接口 21 * 卡券废弃接口
@@ -23,7 +23,7 @@ interface CouponsInterface @@ -23,7 +23,7 @@ interface CouponsInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function couponsAbandon(array $params = []): ResultSet; 26 + public function couponsAbandon(array $params = []);
27 27
28 /** 28 /**
29 * 卡券同步 29 * 卡券同步
@@ -31,7 +31,7 @@ interface CouponsInterface @@ -31,7 +31,7 @@ interface CouponsInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function couponsSyncV2(array $params = []): ResultSet; 34 + public function couponsSyncV2(array $params = []);
35 35
36 /** 36 /**
37 * 卡券核销接口V2版本 37 * 卡券核销接口V2版本
@@ -39,7 +39,7 @@ interface CouponsInterface @@ -39,7 +39,7 @@ interface CouponsInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function couponsVerifyV2(array $params = []): ResultSet; 42 + public function couponsVerifyV2(array $params = []);
43 43
44 /** 44 /**
45 * 卡券核销次数更新 45 * 卡券核销次数更新
@@ -47,7 +47,7 @@ interface CouponsInterface @@ -47,7 +47,7 @@ interface CouponsInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function couponsCertVerifyUpdate(array $params = []): ResultSet; 50 + public function couponsCertVerifyUpdate(array $params = []);
51 51
52 /** 52 /**
53 * 三方卡券列表查询 53 * 三方卡券列表查询
@@ -55,5 +55,5 @@ interface CouponsInterface @@ -55,5 +55,5 @@ interface CouponsInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function orderSettle(array $params = []): ResultSet; 58 + public function orderSettle(array $params = []);
59 } 59 }
@@ -15,7 +15,7 @@ interface CrossborderInterface @@ -15,7 +15,7 @@ interface CrossborderInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function dutyFreeOrderList(array $params = []): ResultSet; 18 + public function dutyFreeOrderList(array $params = []);
19 19
20 /** 20 /**
21 * 库存盘点回告 21 * 库存盘点回告
@@ -23,7 +23,7 @@ interface CrossborderInterface @@ -23,7 +23,7 @@ interface CrossborderInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function crossborderStockTaking(array $params = []): ResultSet; 26 + public function crossborderStockTaking(array $params = []);
27 27
28 /** 28 /**
29 * 库存类型变动回告 29 * 库存类型变动回告
@@ -31,7 +31,7 @@ interface CrossborderInterface @@ -31,7 +31,7 @@ interface CrossborderInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function crossborderStockTransform(array $params = []): ResultSet; 34 + public function crossborderStockTransform(array $params = []);
35 35
36 /** 36 /**
37 * 服务商锁单结果回告 37 * 服务商锁单结果回告
@@ -39,7 +39,7 @@ interface CrossborderInterface @@ -39,7 +39,7 @@ interface CrossborderInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function crossborderOrderInterception(array $params = []): ResultSet; 42 + public function crossborderOrderInterception(array $params = []);
43 43
44 /** 44 /**
45 * 运单信息回告 45 * 运单信息回告
@@ -47,7 +47,7 @@ interface CrossborderInterface @@ -47,7 +47,7 @@ interface CrossborderInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function crossborderTakingLogisticsInfo(array $params = []): ResultSet; 50 + public function crossborderTakingLogisticsInfo(array $params = []);
51 51
52 /** 52 /**
53 * 入库和提货出库回告 53 * 入库和提货出库回告
@@ -55,7 +55,7 @@ interface CrossborderInterface @@ -55,7 +55,7 @@ interface CrossborderInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function crossborderWarehouseInOutboundEvent(array $params = []): ResultSet; 58 + public function crossborderWarehouseInOutboundEvent(array $params = []);
59 59
60 /** 60 /**
61 * 获取交易订单状态 61 * 获取交易订单状态
@@ -63,7 +63,7 @@ interface CrossborderInterface @@ -63,7 +63,7 @@ interface CrossborderInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function crossBorderGetTradeOrderStatus(array $params = []): ResultSet; 66 + public function crossBorderGetTradeOrderStatus(array $params = []);
67 67
68 /** 68 /**
69 * 服务商回告海关税费 69 * 服务商回告海关税费
@@ -71,7 +71,7 @@ interface CrossborderInterface @@ -71,7 +71,7 @@ interface CrossborderInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function crossBorderCustomsTaxInfo(array $params = []): ResultSet; 74 + public function crossBorderCustomsTaxInfo(array $params = []);
75 75
76 /** 76 /**
77 * 商家接单 77 * 商家接单
@@ -79,5 +79,5 @@ interface CrossborderInterface @@ -79,5 +79,5 @@ interface CrossborderInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function dutyFreeOrderConfirm(array $params = []): ResultSet; 82 + public function dutyFreeOrderConfirm(array $params = []);
83 } 83 }
@@ -15,7 +15,7 @@ interface IopInterface @@ -15,7 +15,7 @@ interface IopInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function iopOrderList(array $params = []): ResultSet; 18 + public function iopOrderList(array $params = []);
19 19
20 /** 20 /**
21 * 【厂商】电子面单取号 21 * 【厂商】电子面单取号
@@ -23,7 +23,7 @@ interface IopInterface @@ -23,7 +23,7 @@ interface IopInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function iopWaybillGet(array $params = []): ResultSet; 26 + public function iopWaybillGet(array $params = []);
27 27
28 /** 28 /**
29 * 【厂商】取消电子面单 29 * 【厂商】取消电子面单
@@ -31,7 +31,7 @@ interface IopInterface @@ -31,7 +31,7 @@ interface IopInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function iopWaybillCancel(array $params = []): ResultSet; 34 + public function iopWaybillCancel(array $params = []);
35 35
36 /** 36 /**
37 * 【厂商】代发订单发货接口 37 * 【厂商】代发订单发货接口
@@ -39,7 +39,7 @@ interface IopInterface @@ -39,7 +39,7 @@ interface IopInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function iopWaybillReturn(array $params = []): ResultSet; 42 + public function iopWaybillReturn(array $params = []);
43 43
44 /** 44 /**
45 * 【厂商】代发订单更新发货接口 45 * 【厂商】代发订单更新发货接口
@@ -47,7 +47,7 @@ interface IopInterface @@ -47,7 +47,7 @@ interface IopInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function iopWaybillUpdate(array $params = []): ResultSet; 50 + public function iopWaybillUpdate(array $params = []);
51 51
52 /** 52 /**
53 * 【厂商】订单详情 53 * 【厂商】订单详情
@@ -55,7 +55,7 @@ interface IopInterface @@ -55,7 +55,7 @@ interface IopInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function iopOrderInfo(array $params = []): ResultSet; 58 + public function iopOrderInfo(array $params = []);
59 59
60 /** 60 /**
61 * 【商家】分配代发订单 61 * 【商家】分配代发订单
@@ -63,7 +63,7 @@ interface IopInterface @@ -63,7 +63,7 @@ interface IopInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function iopSellerDistribute(array $params = []): ResultSet; 66 + public function iopSellerDistribute(array $params = []);
67 67
68 /** 68 /**
69 * 【商家】查看代发订单列表 69 * 【商家】查看代发订单列表
@@ -71,7 +71,7 @@ interface IopInterface @@ -71,7 +71,7 @@ interface IopInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function iopSellerOrderList(array $params = []): ResultSet; 74 + public function iopSellerOrderList(array $params = []);
75 75
76 /** 76 /**
77 * 【厂家】查询商家列表 77 * 【厂家】查询商家列表
@@ -79,7 +79,7 @@ interface IopInterface @@ -79,7 +79,7 @@ interface IopInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function iopGetSellerList(array $params = []): ResultSet; 82 + public function iopGetSellerList(array $params = []);
83 83
84 /** 84 /**
85 * 【厂商】查询店铺身份 85 * 【厂商】查询店铺身份
@@ -87,7 +87,7 @@ interface IopInterface @@ -87,7 +87,7 @@ interface IopInterface
87 * @param array $params 87 * @param array $params
88 * @return ResultSet 88 * @return ResultSet
89 */ 89 */
90 - public function iopRoleGet(array $params = []): ResultSet; 90 + public function iopRoleGet(array $params = []);
91 91
92 /** 92 /**
93 * 【商家】取消分配代发订单 93 * 【商家】取消分配代发订单
@@ -95,7 +95,7 @@ interface IopInterface @@ -95,7 +95,7 @@ interface IopInterface
95 * @param array $params 95 * @param array $params
96 * @return ResultSet 96 * @return ResultSet
97 */ 97 */
98 - public function iopSellerCancleDistribute(array $params = []): ResultSet; 98 + public function iopSellerCancleDistribute(array $params = []);
99 99
100 /** 100 /**
101 * 【商家】查询厂商管理列表 101 * 【商家】查询厂商管理列表
@@ -103,7 +103,7 @@ interface IopInterface @@ -103,7 +103,7 @@ interface IopInterface
103 * @param array $params 103 * @param array $params
104 * @return ResultSet 104 * @return ResultSet
105 */ 105 */
106 - public function iopSellerSupplierList(array $params = []): ResultSet; 106 + public function iopSellerSupplierList(array $params = []);
107 107
108 /** 108 /**
109 * 【商家】查看代发订单详情 109 * 【商家】查看代发订单详情
@@ -111,5 +111,5 @@ interface IopInterface @@ -111,5 +111,5 @@ interface IopInterface
111 * @param array $params 111 * @param array $params
112 * @return ResultSet 112 * @return ResultSet
113 */ 113 */
114 - public function iopSellerOrderInfo(array $params = []): ResultSet; 114 + public function iopSellerOrderInfo(array $params = []);
115 } 115 }
@@ -15,7 +15,7 @@ interface LogisticsInterface @@ -15,7 +15,7 @@ interface LogisticsInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function logisticsAppendSubOrder(array $params = []): ResultSet; 18 + public function logisticsAppendSubOrder(array $params = []);
19 19
20 /** 20 /**
21 * 获取快递公司列表 21 * 获取快递公司列表
@@ -23,7 +23,7 @@ interface LogisticsInterface @@ -23,7 +23,7 @@ interface LogisticsInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function orderLogisticsCompanyList(array $params = []): ResultSet; 26 + public function orderLogisticsCompanyList(array $params = []);
27 27
28 /** 28 /**
29 * 订单发货接口 29 * 订单发货接口
@@ -31,7 +31,7 @@ interface LogisticsInterface @@ -31,7 +31,7 @@ interface LogisticsInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function orderLogisticsAdd(array $params = []): ResultSet; 34 + public function orderLogisticsAdd(array $params = []);
35 35
36 /** 36 /**
37 * 修改发货物流 37 * 修改发货物流
@@ -39,7 +39,7 @@ interface LogisticsInterface @@ -39,7 +39,7 @@ interface LogisticsInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function orderLogisticsEdit(array $params = []): ResultSet; 42 + public function orderLogisticsEdit(array $params = []);
43 43
44 /** 44 /**
45 * 修改包裹里的物流信息 45 * 修改包裹里的物流信息
@@ -47,7 +47,7 @@ interface LogisticsInterface @@ -47,7 +47,7 @@ interface LogisticsInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function orderLogisticsEditByPack(array $params = []): ResultSet; 50 + public function orderLogisticsEditByPack(array $params = []);
51 51
52 /** 52 /**
53 * 一单多包发货接口 53 * 一单多包发货接口
@@ -55,7 +55,7 @@ interface LogisticsInterface @@ -55,7 +55,7 @@ interface LogisticsInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function orderLogisticsAddMultiPack(array $params = []): ResultSet; 58 + public function orderLogisticsAddMultiPack(array $params = []);
59 59
60 /** 60 /**
61 * 获取运费模板列表 61 * 获取运费模板列表
@@ -63,7 +63,7 @@ interface LogisticsInterface @@ -63,7 +63,7 @@ interface LogisticsInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function freightTemplateList(array $params = []): ResultSet; 66 + public function freightTemplateList(array $params = []);
67 67
68 /** 68 /**
69 * 支持多个订单发同一个物流包裹 69 * 支持多个订单发同一个物流包裹
@@ -71,7 +71,7 @@ interface LogisticsInterface @@ -71,7 +71,7 @@ interface LogisticsInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function orderLogisticsAddSinglePack(array $params = []): ResultSet; 74 + public function orderLogisticsAddSinglePack(array $params = []);
75 75
76 /** 76 /**
77 * 更新收件人信息 以及发件人名字联系方式信息,不支持顺丰速递面单信息更新 77 * 更新收件人信息 以及发件人名字联系方式信息,不支持顺丰速递面单信息更新
@@ -79,7 +79,7 @@ interface LogisticsInterface @@ -79,7 +79,7 @@ interface LogisticsInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function logisticsUpdateOrder(array $params = []): ResultSet; 82 + public function logisticsUpdateOrder(array $params = []);
83 83
84 /** 84 /**
85 * 用于ISV/商家ERP系统 端发起取消已获取的电子面单号 85 * 用于ISV/商家ERP系统 端发起取消已获取的电子面单号
@@ -87,7 +87,7 @@ interface LogisticsInterface @@ -87,7 +87,7 @@ interface LogisticsInterface
87 * @param array $params 87 * @param array $params
88 * @return ResultSet 88 * @return ResultSet
89 */ 89 */
90 - public function logisticsCancelOrder(array $params = []): ResultSet; 90 + public function logisticsCancelOrder(array $params = []);
91 91
92 /** 92 /**
93 * 服务商回传仓储 93 * 服务商回传仓储
@@ -95,7 +95,7 @@ interface LogisticsInterface @@ -95,7 +95,7 @@ interface LogisticsInterface
95 * @param array $params 95 * @param array $params
96 * @return ResultSet 96 * @return ResultSet
97 */ 97 */
98 - public function crossBorderOrderOperate(array $params = []): ResultSet; 98 + public function crossBorderOrderOperate(array $params = []);
99 99
100 /** 100 /**
101 * 服务商回告清关状态 101 * 服务商回告清关状态
@@ -103,7 +103,7 @@ interface LogisticsInterface @@ -103,7 +103,7 @@ interface LogisticsInterface
103 * @param array $params 103 * @param array $params
104 * @return ResultSet 104 * @return ResultSet
105 */ 105 */
106 - public function crossborderOrderCustomClearance(array $params = []): ResultSet; 106 + public function crossborderOrderCustomClearance(array $params = []);
107 107
108 /** 108 /**
109 * 服务商回传国际干线作业节点 109 * 服务商回传国际干线作业节点
@@ -111,7 +111,7 @@ interface LogisticsInterface @@ -111,7 +111,7 @@ interface LogisticsInterface
111 * @param array $params 111 * @param array $params
112 * @return ResultSet 112 * @return ResultSet
113 */ 113 */
114 - public function crossborderOrderLogisticsTrace(array $params = []): ResultSet; 114 + public function crossborderOrderLogisticsTrace(array $params = []);
115 115
116 /** 116 /**
117 * 查询商家自定义区域数据 117 * 查询商家自定义区域数据
@@ -119,7 +119,7 @@ interface LogisticsInterface @@ -119,7 +119,7 @@ interface LogisticsInterface
119 * @param array $params 119 * @param array $params
120 * @return ResultSet 120 * @return ResultSet
121 */ 121 */
122 - public function logisticsCustomTemplateList(array $params = []): ResultSet; 122 + public function logisticsCustomTemplateList(array $params = []);
123 123
124 /** 124 /**
125 * 查询地址快递是否可以送达 125 * 查询地址快递是否可以送达
@@ -127,7 +127,7 @@ interface LogisticsInterface @@ -127,7 +127,7 @@ interface LogisticsInterface
127 * @param array $params 127 * @param array $params
128 * @return ResultSet 128 * @return ResultSet
129 */ 129 */
130 - public function logisticsGetOutRange(array $params = []): ResultSet; 130 + public function logisticsGetOutRange(array $params = []);
131 131
132 /** 132 /**
133 * 服务商接单 133 * 服务商接单
@@ -135,7 +135,7 @@ interface LogisticsInterface @@ -135,7 +135,7 @@ interface LogisticsInterface
135 * @param array $params 135 * @param array $params
136 * @return ResultSet 136 * @return ResultSet
137 */ 137 */
138 - public function crossBorderOrderConfirm(array $params = []): ResultSet; 138 + public function crossBorderOrderConfirm(array $params = []);
139 139
140 /** 140 /**
141 * 获取商家所有模版信息 141 * 获取商家所有模版信息
@@ -143,7 +143,7 @@ interface LogisticsInterface @@ -143,7 +143,7 @@ interface LogisticsInterface
143 * @param array $params 143 * @param array $params
144 * @return ResultSet 144 * @return ResultSet
145 */ 145 */
146 - public function logisticsTemplateList(array $params = []): ResultSet; 146 + public function logisticsTemplateList(array $params = []);
147 147
148 /** 148 /**
149 * 获取面单信息 149 * 获取面单信息
@@ -151,7 +151,7 @@ interface LogisticsInterface @@ -151,7 +151,7 @@ interface LogisticsInterface
151 * @param array $params 151 * @param array $params
152 * @return ResultSet 152 * @return ResultSet
153 */ 153 */
154 - public function logisticsWaybillApply(array $params = []): ResultSet; 154 + public function logisticsWaybillApply(array $params = []);
155 155
156 /** 156 /**
157 * 订单放行/回退 157 * 订单放行/回退
@@ -159,7 +159,7 @@ interface LogisticsInterface @@ -159,7 +159,7 @@ interface LogisticsInterface
159 * @param array $params 159 * @param array $params
160 * @return ResultSet 160 * @return ResultSet
161 */ 161 */
162 - public function logisticsDeliveryNotice(array $params = []): ResultSet; 162 + public function logisticsDeliveryNotice(array $params = []);
163 163
164 /** 164 /**
165 * 末端服务字节面单信息查询(仅用于兼容老物流网关) 165 * 末端服务字节面单信息查询(仅用于兼容老物流网关)
@@ -167,7 +167,7 @@ interface LogisticsInterface @@ -167,7 +167,7 @@ interface LogisticsInterface
167 * @param array $params 167 * @param array $params
168 * @return ResultSet 168 * @return ResultSet
169 */ 169 */
170 - public function powerIsByteDancePackage(array $params = []): ResultSet; 170 + public function powerIsByteDancePackage(array $params = []);
171 171
172 /** 172 /**
173 * 一段码推送(包含末端中心、集包地、大头笔)(仅用于兼容老物流网关) 173 * 一段码推送(包含末端中心、集包地、大头笔)(仅用于兼容老物流网关)
@@ -175,7 +175,7 @@ interface LogisticsInterface @@ -175,7 +175,7 @@ interface LogisticsInterface
175 * @param array $params 175 * @param array $params
176 * @return ResultSet 176 * @return ResultSet
177 */ 177 */
178 - public function powerPushFirstSortCode(array $params = []): ResultSet; 178 + public function powerPushFirstSortCode(array $params = []);
179 179
180 /** 180 /**
181 * 个性化集包编码推送(仅用于兼容老物流网关) 181 * 个性化集包编码推送(仅用于兼容老物流网关)
@@ -183,7 +183,7 @@ interface LogisticsInterface @@ -183,7 +183,7 @@ interface LogisticsInterface
183 * @param array $params 183 * @param array $params
184 * @return ResultSet 184 * @return ResultSet
185 */ 185 */
186 - public function powerPushCustomSortCode(array $params = []): ResultSet; 186 + public function powerPushCustomSortCode(array $params = []);
187 187
188 /** 188 /**
189 * 三段码推送(仅用于兼容老物流网关) 189 * 三段码推送(仅用于兼容老物流网关)
@@ -191,7 +191,7 @@ interface LogisticsInterface @@ -191,7 +191,7 @@ interface LogisticsInterface
191 * @param array $params 191 * @param array $params
192 * @return ResultSet 192 * @return ResultSet
193 */ 193 */
194 - public function powerPushThirdSortCode(array $params = []): ResultSet; 194 + public function powerPushThirdSortCode(array $params = []);
195 195
196 /** 196 /**
197 * 商家ERP/ISV 向字节电子面单系统获取单号和打印信息 197 * 商家ERP/ISV 向字节电子面单系统获取单号和打印信息
@@ -199,7 +199,7 @@ interface LogisticsInterface @@ -199,7 +199,7 @@ interface LogisticsInterface
199 * @param array $params 199 * @param array $params
200 * @return ResultSet 200 * @return ResultSet
201 */ 201 */
202 - public function logisticsNewCreateOrder(array $params = []): ResultSet; 202 + public function logisticsNewCreateOrder(array $params = []);
203 203
204 /** 204 /**
205 * isv轨迹查询 205 * isv轨迹查询
@@ -207,7 +207,7 @@ interface LogisticsInterface @@ -207,7 +207,7 @@ interface LogisticsInterface
207 * @param array $params 207 * @param array $params
208 * @return ResultSet 208 * @return ResultSet
209 */ 209 */
210 - public function logisticsQueryPackageRoute(array $params = []): ResultSet; 210 + public function logisticsQueryPackageRoute(array $params = []);
211 211
212 /** 212 /**
213 * isv轨迹订阅 213 * isv轨迹订阅
@@ -215,7 +215,7 @@ interface LogisticsInterface @@ -215,7 +215,7 @@ interface LogisticsInterface
215 * @param array $params 215 * @param array $params
216 * @return ResultSet 216 * @return ResultSet
217 */ 217 */
218 - public function logisticsRegisterPackageRoute(array $params = []): ResultSet; 218 + public function logisticsRegisterPackageRoute(array $params = []);
219 219
220 /** 220 /**
221 * 物流商推送改约时间 221 * 物流商推送改约时间
@@ -223,7 +223,7 @@ interface LogisticsInterface @@ -223,7 +223,7 @@ interface LogisticsInterface
223 * @param array $params 223 * @param array $params
224 * @return ResultSet 224 * @return ResultSet
225 */ 225 */
226 - public function powerUpdateCollectTime(array $params = []): ResultSet; 226 + public function powerUpdateCollectTime(array $params = []);
227 227
228 /** 228 /**
229 * 更新运费模板 229 * 更新运费模板
@@ -231,7 +231,7 @@ interface LogisticsInterface @@ -231,7 +231,7 @@ interface LogisticsInterface
231 * @param array $params 231 * @param array $params
232 * @return ResultSet 232 * @return ResultSet
233 */ 233 */
234 - public function freightTemplateUpdate(array $params = []): ResultSet; 234 + public function freightTemplateUpdate(array $params = []);
235 235
236 /** 236 /**
237 * 创建运费模板 237 * 创建运费模板
@@ -239,7 +239,7 @@ interface LogisticsInterface @@ -239,7 +239,7 @@ interface LogisticsInterface
239 * @param array $params 239 * @param array $params
240 * @return ResultSet 240 * @return ResultSet
241 */ 241 */
242 - public function freightTemplateCreate(array $params = []): ResultSet; 242 + public function freightTemplateCreate(array $params = []);
243 243
244 /** 244 /**
245 * 末端服务商回传取件码(仅用于兼容老物流网关) 245 * 末端服务商回传取件码(仅用于兼容老物流网关)
@@ -247,7 +247,7 @@ interface LogisticsInterface @@ -247,7 +247,7 @@ interface LogisticsInterface
247 * @param array $params 247 * @param array $params
248 * @return ResultSet 248 * @return ResultSet
249 */ 249 */
250 - public function powerPickupCodeCallback(array $params = []): ResultSet; 250 + public function powerPickupCodeCallback(array $params = []);
251 251
252 /** 252 /**
253 * 查询商家自定义模板(新版) 253 * 查询商家自定义模板(新版)
@@ -255,7 +255,7 @@ interface LogisticsInterface @@ -255,7 +255,7 @@ interface LogisticsInterface
255 * @param array $params 255 * @param array $params
256 * @return ResultSet 256 * @return ResultSet
257 */ 257 */
258 - public function logisticsGetDesignTemplateList(array $params = []): ResultSet; 258 + public function logisticsGetDesignTemplateList(array $params = []);
259 259
260 /** 260 /**
261 * 虚拟号服务商通话记录回传(仅用于兼容老物流网关) 261 * 虚拟号服务商通话记录回传(仅用于兼容老物流网关)
@@ -263,7 +263,7 @@ interface LogisticsInterface @@ -263,7 +263,7 @@ interface LogisticsInterface
263 * @param array $params 263 * @param array $params
264 * @return ResultSet 264 * @return ResultSet
265 */ 265 */
266 - public function powerVirtualServicePushCallRecord(array $params = []): ResultSet; 266 + public function powerVirtualServicePushCallRecord(array $params = []);
267 267
268 /** 268 /**
269 * 查询商家自定义区模板(新版) 269 * 查询商家自定义区模板(新版)
@@ -271,7 +271,7 @@ interface LogisticsInterface @@ -271,7 +271,7 @@ interface LogisticsInterface
271 * @param array $params 271 * @param array $params
272 * @return ResultSet 272 * @return ResultSet
273 */ 273 */
274 - public function logisticsGetCustomTemplateList(array $params = []): ResultSet; 274 + public function logisticsGetCustomTemplateList(array $params = []);
275 275
276 /** 276 /**
277 * 运单轨迹查询接口 277 * 运单轨迹查询接口
@@ -279,7 +279,7 @@ interface LogisticsInterface @@ -279,7 +279,7 @@ interface LogisticsInterface
279 * @param array $params 279 * @param array $params
280 * @return ResultSet 280 * @return ResultSet
281 */ 281 */
282 - public function logisticsTrackNoRouteDetail(array $params = []): ResultSet; 282 + public function logisticsTrackNoRouteDetail(array $params = []);
283 283
284 /** 284 /**
285 * 海南项目服务商回传实操节点 285 * 海南项目服务商回传实操节点
@@ -287,7 +287,7 @@ interface LogisticsInterface @@ -287,7 +287,7 @@ interface LogisticsInterface
287 * @param array $params 287 * @param array $params
288 * @return ResultSet 288 * @return ResultSet
289 */ 289 */
290 - public function dutyFreeOrderOperate(array $params = []): ResultSet; 290 + public function dutyFreeOrderOperate(array $params = []);
291 291
292 /** 292 /**
293 * 查询跨境订单列表 293 * 查询跨境订单列表
@@ -295,7 +295,7 @@ interface LogisticsInterface @@ -295,7 +295,7 @@ interface LogisticsInterface
295 * @param array $params 295 * @param array $params
296 * @return ResultSet 296 * @return ResultSet
297 */ 297 */
298 - public function crossBorderOrderList(array $params = []): ResultSet; 298 + public function crossBorderOrderList(array $params = []);
299 299
300 /** 300 /**
301 * 查询商家和物流商的订购关系以及物流单号使用情况 301 * 查询商家和物流商的订购关系以及物流单号使用情况
@@ -303,7 +303,7 @@ interface LogisticsInterface @@ -303,7 +303,7 @@ interface LogisticsInterface
303 * @param array $params 303 * @param array $params
304 * @return ResultSet 304 * @return ResultSet
305 */ 305 */
306 - public function logisticsListShopNetsite(array $params = []): ResultSet; 306 + public function logisticsListShopNetsite(array $params = []);
307 307
308 /** 308 /**
309 * 获取四级地址全量省份信息 309 * 获取四级地址全量省份信息
@@ -311,7 +311,7 @@ interface LogisticsInterface @@ -311,7 +311,7 @@ interface LogisticsInterface
311 * @param array $params 311 * @param array $params
312 * @return ResultSet 312 * @return ResultSet
313 */ 313 */
314 - public function addressGetProvince(array $params = []): ResultSet; 314 + public function addressGetProvince(array $params = []);
315 315
316 /** 316 /**
317 * 根据省获取全量四级地址 317 * 根据省获取全量四级地址
@@ -319,7 +319,7 @@ interface LogisticsInterface @@ -319,7 +319,7 @@ interface LogisticsInterface
319 * @param array $params 319 * @param array $params
320 * @return ResultSet 320 * @return ResultSet
321 */ 321 */
322 - public function addressGetAreasByProvince(array $params = []): ResultSet; 322 + public function addressGetAreasByProvince(array $params = []);
323 323
324 /** 324 /**
325 * 获取运费模板详情 325 * 获取运费模板详情
@@ -327,7 +327,7 @@ interface LogisticsInterface @@ -327,7 +327,7 @@ interface LogisticsInterface
327 * @param array $params 327 * @param array $params
328 * @return ResultSet 328 * @return ResultSet
329 */ 329 */
330 - public function freightTemplateDetail(array $params = []): ResultSet; 330 + public function freightTemplateDetail(array $params = []);
331 331
332 /** 332 /**
333 * 快递服务商将运单申报的回执回告至平台 333 * 快递服务商将运单申报的回执回告至平台
@@ -335,7 +335,7 @@ interface LogisticsInterface @@ -335,7 +335,7 @@ interface LogisticsInterface
335 * @param array $params 335 * @param array $params
336 * @return ResultSet 336 * @return ResultSet
337 */ 337 */
338 - public function crossBorderReceiveReceiptOfCustomsWayBill(array $params = []): ResultSet; 338 + public function crossBorderReceiveReceiptOfCustomsWayBill(array $params = []);
339 339
340 /** 340 /**
341 * 末端订单状态推送 341 * 末端订单状态推送
@@ -343,7 +343,7 @@ interface LogisticsInterface @@ -343,7 +343,7 @@ interface LogisticsInterface
343 * @param array $params 343 * @param array $params
344 * @return ResultSet 344 * @return ResultSet
345 */ 345 */
346 - public function logisticsUpdateTerminalOrder(array $params = []): ResultSet; 346 + public function logisticsUpdateTerminalOrder(array $params = []);
347 347
348 /** 348 /**
349 * 虚拟号服务商回传虚拟号接通事件 349 * 虚拟号服务商回传虚拟号接通事件
@@ -351,5 +351,5 @@ interface LogisticsInterface @@ -351,5 +351,5 @@ interface LogisticsInterface
351 * @param array $params 351 * @param array $params
352 * @return ResultSet 352 * @return ResultSet
353 */ 353 */
354 - public function powerHandleVirtualTelConnect(array $params = []): ResultSet; 354 + public function powerHandleVirtualTelConnect(array $params = []);
355 } 355 }
@@ -15,7 +15,7 @@ interface MaterialInterface @@ -15,7 +15,7 @@ interface MaterialInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function materialCreateFolder(array $params = []): ResultSet; 18 + public function materialCreateFolder(array $params = []);
19 19
20 /** 20 /**
21 * 编辑/移动文件夹 21 * 编辑/移动文件夹
@@ -23,7 +23,7 @@ interface MaterialInterface @@ -23,7 +23,7 @@ interface MaterialInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function materialEditFolder(array $params = []): ResultSet; 26 + public function materialEditFolder(array $params = []);
27 27
28 /** 28 /**
29 * 将文件夹移动到回收站 29 * 将文件夹移动到回收站
@@ -31,7 +31,7 @@ interface MaterialInterface @@ -31,7 +31,7 @@ interface MaterialInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function materialMoveFolderToRecycleBin(array $params = []): ResultSet; 34 + public function materialMoveFolderToRecycleBin(array $params = []);
35 35
36 /** 36 /**
37 * 移动素材到回收站 37 * 移动素材到回收站
@@ -39,7 +39,7 @@ interface MaterialInterface @@ -39,7 +39,7 @@ interface MaterialInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function materialMoveMaterialToRecycleBin(array $params = []): ResultSet; 42 + public function materialMoveMaterialToRecycleBin(array $params = []);
43 43
44 /** 44 /**
45 * 从回收站中恢复素材 45 * 从回收站中恢复素材
@@ -47,7 +47,7 @@ interface MaterialInterface @@ -47,7 +47,7 @@ interface MaterialInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function materialRecoverMaterial(array $params = []): ResultSet; 50 + public function materialRecoverMaterial(array $params = []);
51 51
52 /** 52 /**
53 * 编辑素材 53 * 编辑素材
@@ -55,7 +55,7 @@ interface MaterialInterface @@ -55,7 +55,7 @@ interface MaterialInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function materialEditMaterial(array $params = []): ResultSet; 58 + public function materialEditMaterial(array $params = []);
59 59
60 /** 60 /**
61 * 批量上传视频到素材中心 61 * 批量上传视频到素材中心
@@ -63,7 +63,7 @@ interface MaterialInterface @@ -63,7 +63,7 @@ interface MaterialInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function materialBatchUploadVideoAsync(array $params = []): ResultSet; 66 + public function materialBatchUploadVideoAsync(array $params = []);
67 67
68 /** 68 /**
69 * 批量上传图片到素材中心 69 * 批量上传图片到素材中心
@@ -71,7 +71,7 @@ interface MaterialInterface @@ -71,7 +71,7 @@ interface MaterialInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function materialBatchUploadImageSync(array $params = []): ResultSet; 74 + public function materialBatchUploadImageSync(array $params = []);
75 75
76 /** 76 /**
77 * 查看文件夹详情 77 * 查看文件夹详情
@@ -79,7 +79,7 @@ interface MaterialInterface @@ -79,7 +79,7 @@ interface MaterialInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function materialGetFolderInfo(array $params = []): ResultSet; 82 + public function materialGetFolderInfo(array $params = []);
83 83
84 /** 84 /**
85 * 搜索文件夹 85 * 搜索文件夹
@@ -87,7 +87,7 @@ interface MaterialInterface @@ -87,7 +87,7 @@ interface MaterialInterface
87 * @param array $params 87 * @param array $params
88 * @return ResultSet 88 * @return ResultSet
89 */ 89 */
90 - public function materialSearchFolder(array $params = []): ResultSet; 90 + public function materialSearchFolder(array $params = []);
91 91
92 /** 92 /**
93 * 素材中心--异步上传视频接口 93 * 素材中心--异步上传视频接口
@@ -95,7 +95,7 @@ interface MaterialInterface @@ -95,7 +95,7 @@ interface MaterialInterface
95 * @param array $params 95 * @param array $params
96 * @return ResultSet 96 * @return ResultSet
97 */ 97 */
98 - public function materialUploadVideoAsync(array $params = []): ResultSet; 98 + public function materialUploadVideoAsync(array $params = []);
99 99
100 /** 100 /**
101 * 同步上传素材 101 * 同步上传素材
@@ -103,7 +103,7 @@ interface MaterialInterface @@ -103,7 +103,7 @@ interface MaterialInterface
103 * @param array $params 103 * @param array $params
104 * @return ResultSet 104 * @return ResultSet
105 */ 105 */
106 - public function materialUploadImageSync(array $params = []): ResultSet; 106 + public function materialUploadImageSync(array $params = []);
107 107
108 /** 108 /**
109 * 根据素材id查素材详情 109 * 根据素材id查素材详情
@@ -111,7 +111,7 @@ interface MaterialInterface @@ -111,7 +111,7 @@ interface MaterialInterface
111 * @param array $params 111 * @param array $params
112 * @return ResultSet 112 * @return ResultSet
113 */ 113 */
114 - public function materialQueryMaterialDetail(array $params = []): ResultSet; 114 + public function materialQueryMaterialDetail(array $params = []);
115 115
116 /** 116 /**
117 * 彻底删除文件夹 117 * 彻底删除文件夹
@@ -119,7 +119,7 @@ interface MaterialInterface @@ -119,7 +119,7 @@ interface MaterialInterface
119 * @param array $params 119 * @param array $params
120 * @return ResultSet 120 * @return ResultSet
121 */ 121 */
122 - public function materialDeleteFolder(array $params = []): ResultSet; 122 + public function materialDeleteFolder(array $params = []);
123 123
124 /** 124 /**
125 * 彻底删除素材 125 * 彻底删除素材
@@ -127,7 +127,7 @@ interface MaterialInterface @@ -127,7 +127,7 @@ interface MaterialInterface
127 * @param array $params 127 * @param array $params
128 * @return ResultSet 128 * @return ResultSet
129 */ 129 */
130 - public function materialDeleteMaterial(array $params = []): ResultSet; 130 + public function materialDeleteMaterial(array $params = []);
131 131
132 /** 132 /**
133 * 从回收站恢复文件夹 133 * 从回收站恢复文件夹
@@ -135,7 +135,7 @@ interface MaterialInterface @@ -135,7 +135,7 @@ interface MaterialInterface
135 * @param array $params 135 * @param array $params
136 * @return ResultSet 136 * @return ResultSet
137 */ 137 */
138 - public function materialRecoverFolder(array $params = []): ResultSet; 138 + public function materialRecoverFolder(array $params = []);
139 139
140 /** 140 /**
141 * 获取商家容量详情 141 * 获取商家容量详情
@@ -143,7 +143,7 @@ interface MaterialInterface @@ -143,7 +143,7 @@ interface MaterialInterface
143 * @param array $params 143 * @param array $params
144 * @return ResultSet 144 * @return ResultSet
145 */ 145 */
146 - public function materialGetCapInfo(array $params = []): ResultSet; 146 + public function materialGetCapInfo(array $params = []);
147 147
148 /** 148 /**
149 * 批量获取视频信息 149 * 批量获取视频信息
@@ -151,7 +151,7 @@ interface MaterialInterface @@ -151,7 +151,7 @@ interface MaterialInterface
151 * @param array $params 151 * @param array $params
152 * @return ResultSet 152 * @return ResultSet
153 */ 153 */
154 - public function materialMGetPlayInfo(array $params = []): ResultSet; 154 + public function materialMGetPlayInfo(array $params = []);
155 155
156 /** 156 /**
157 * 一键删除 157 * 一键删除
@@ -159,5 +159,5 @@ interface MaterialInterface @@ -159,5 +159,5 @@ interface MaterialInterface
159 * @param array $params 159 * @param array $params
160 * @return ResultSet 160 * @return ResultSet
161 */ 161 */
162 - public function materialEasyShuttle(array $params = []): ResultSet; 162 + public function materialEasyShuttle(array $params = []);
163 } 163 }
@@ -15,7 +15,7 @@ interface MemberInterface @@ -15,7 +15,7 @@ interface MemberInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function memberBatchUpdate(array $params = []): ResultSet; 18 + public function memberBatchUpdate(array $params = []);
19 19
20 /** 20 /**
21 * 【品牌会员专用】将openId转化成品牌会员商家的unionId 21 * 【品牌会员专用】将openId转化成品牌会员商家的unionId
@@ -23,7 +23,7 @@ interface MemberInterface @@ -23,7 +23,7 @@ interface MemberInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function memberBatchGetUnionIdByOpenIdList(array $params = []): ResultSet; 26 + public function memberBatchGetUnionIdByOpenIdList(array $params = []);
27 27
28 /** 28 /**
29 * 加入会员接口 29 * 加入会员接口
@@ -31,7 +31,7 @@ interface MemberInterface @@ -31,7 +31,7 @@ interface MemberInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function memberJoinShopMemberWithMobileId(array $params = []): ResultSet; 34 + public function memberJoinShopMemberWithMobileId(array $params = []);
35 35
36 /** 36 /**
37 * 入会面板调用 37 * 入会面板调用
@@ -39,7 +39,7 @@ interface MemberInterface @@ -39,7 +39,7 @@ interface MemberInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function memberGetOuterShopMemberConf(array $params = []): ResultSet; 42 + public function memberGetOuterShopMemberConf(array $params = []);
43 43
44 /** 44 /**
45 * 电商会员卡面信息 45 * 电商会员卡面信息
@@ -47,7 +47,7 @@ interface MemberInterface @@ -47,7 +47,7 @@ interface MemberInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function memberGetUserShopMemberCard(array $params = []): ResultSet; 50 + public function memberGetUserShopMemberCard(array $params = []);
51 51
52 /** 52 /**
53 * 获取用户裂变引导入会人数 53 * 获取用户裂变引导入会人数
@@ -55,7 +55,7 @@ interface MemberInterface @@ -55,7 +55,7 @@ interface MemberInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function memberGetJoinBonusCountForUser(array $params = []): ResultSet; 58 + public function memberGetJoinBonusCountForUser(array $params = []);
59 59
60 /** 60 /**
61 * 【品牌会员店铺专用】根据店铺会员的openId获取品牌维度的用户身份标识unionId 61 * 【品牌会员店铺专用】根据店铺会员的openId获取品牌维度的用户身份标识unionId
@@ -63,5 +63,5 @@ interface MemberInterface @@ -63,5 +63,5 @@ interface MemberInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function memberBatchGetHistoryMemberUnionId(array $params = []): ResultSet; 66 + public function memberBatchGetHistoryMemberUnionId(array $params = []);
67 } 67 }
@@ -15,7 +15,7 @@ interface OpenCloudInterface @@ -15,7 +15,7 @@ interface OpenCloudInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function openCloudDdpGetShopList(array $params = []): ResultSet; 18 + public function openCloudDdpGetShopList(array $params = []);
19 19
20 /** 20 /**
21 * 数据推送,删除绑定的推送店铺 21 * 数据推送,删除绑定的推送店铺
@@ -23,7 +23,7 @@ interface OpenCloudInterface @@ -23,7 +23,7 @@ interface OpenCloudInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function openCloudDdpDeleteShop(array $params = []): ResultSet; 26 + public function openCloudDdpDeleteShop(array $params = []);
27 27
28 /** 28 /**
29 * 数据推送,添加数据推送店铺 29 * 数据推送,添加数据推送店铺
@@ -31,5 +31,5 @@ interface OpenCloudInterface @@ -31,5 +31,5 @@ interface OpenCloudInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function openCloudDdpAddShop(array $params = []): ResultSet; 34 + public function openCloudDdpAddShop(array $params = []);
35 } 35 }
@@ -15,7 +15,7 @@ interface OrderInterface @@ -15,7 +15,7 @@ interface OrderInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function orderSearchList(array $params = []): ResultSet; 18 + public function orderSearchList(array $params = []);
19 19
20 /** 20 /**
21 * 订单详情查询 21 * 订单详情查询
@@ -23,7 +23,7 @@ interface OrderInterface @@ -23,7 +23,7 @@ interface OrderInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function orderOrderDetail(array $params = []): ResultSet; 26 + public function orderOrderDetail(array $params = []);
27 27
28 /** 28 /**
29 * 批量解密接口 29 * 批量解密接口
@@ -31,7 +31,7 @@ interface OrderInterface @@ -31,7 +31,7 @@ interface OrderInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function orderBatchDecrypt(array $params = []): ResultSet; 34 + public function orderBatchDecrypt(array $params = []);
35 35
36 /** 36 /**
37 * 为商家提供订单备注接口 37 * 为商家提供订单备注接口
@@ -39,7 +39,7 @@ interface OrderInterface @@ -39,7 +39,7 @@ interface OrderInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function orderAddOrderRemark(array $params = []): ResultSet; 42 + public function orderAddOrderRemark(array $params = []);
43 43
44 /** 44 /**
45 * 支持调用后打开(或关闭)卖家针对买家收货地址变更的审核流程 45 * 支持调用后打开(或关闭)卖家针对买家收货地址变更的审核流程
@@ -47,7 +47,7 @@ interface OrderInterface @@ -47,7 +47,7 @@ interface OrderInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function orderAddressAppliedSwitch(array $params = []): ResultSet; 50 + public function orderAddressAppliedSwitch(array $params = []);
51 51
52 /** 52 /**
53 * 卖家主动修改收货地址 53 * 卖家主动修改收货地址
@@ -55,7 +55,7 @@ interface OrderInterface @@ -55,7 +55,7 @@ interface OrderInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function orderAddressModify(array $params = []): ResultSet; 58 + public function orderAddressModify(array $params = []);
59 59
60 /** 60 /**
61 * 批量加密接口 61 * 批量加密接口
@@ -63,7 +63,7 @@ interface OrderInterface @@ -63,7 +63,7 @@ interface OrderInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function orderBatchEncrypt(array $params = []): ResultSet; 66 + public function orderBatchEncrypt(array $params = []);
67 67
68 /** 68 /**
69 * 批量脱敏接口 69 * 批量脱敏接口
@@ -71,7 +71,7 @@ interface OrderInterface @@ -71,7 +71,7 @@ interface OrderInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function orderBatchSensitive(array $params = []): ResultSet; 74 + public function orderBatchSensitive(array $params = []);
75 75
76 /** 76 /**
77 * 发票信息回传 77 * 发票信息回传
@@ -79,7 +79,7 @@ interface OrderInterface @@ -79,7 +79,7 @@ interface OrderInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function orderStockUp(array $params = []): ResultSet; 82 + public function orderStockUp(array $params = []);
83 83
84 /** 84 /**
85 * 订单商品的序列号上传 85 * 订单商品的序列号上传
@@ -87,7 +87,7 @@ interface OrderInterface @@ -87,7 +87,7 @@ interface OrderInterface
87 * @param array $params 87 * @param array $params
88 * @return ResultSet 88 * @return ResultSet
89 */ 89 */
90 - public function orderAddSerialNumber(array $params = []): ResultSet; 90 + public function orderAddSerialNumber(array $params = []);
91 91
92 /** 92 /**
93 * 查询明文手机号报备接口 93 * 查询明文手机号报备接口
@@ -95,7 +95,7 @@ interface OrderInterface @@ -95,7 +95,7 @@ interface OrderInterface
95 * @param array $params 95 * @param array $params
96 * @return ResultSet 96 * @return ResultSet
97 */ 97 */
98 - public function orderOrdeReportList(array $params = []): ResultSet; 98 + public function orderOrdeReportList(array $params = []);
99 99
100 /** 100 /**
101 * 商家回传订单审核结果 101 * 商家回传订单审核结果
@@ -103,7 +103,7 @@ interface OrderInterface @@ -103,7 +103,7 @@ interface OrderInterface
103 * @param array $params 103 * @param array $params
104 * @return ResultSet 104 * @return ResultSet
105 */ 105 */
106 - public function orderReview(array $params = []): ResultSet; 106 + public function orderReview(array $params = []);
107 107
108 /** 108 /**
109 * 三方卡券延期 109 * 三方卡券延期
@@ -111,7 +111,7 @@ interface OrderInterface @@ -111,7 +111,7 @@ interface OrderInterface
111 * @param array $params 111 * @param array $params
112 * @return ResultSet 112 * @return ResultSet
113 */ 113 */
114 - public function couponsExtendCertValidEndByOrder(array $params = []): ResultSet; 114 + public function couponsExtendCertValidEndByOrder(array $params = []);
115 115
116 /** 116 /**
117 * 回复服务请求 117 * 回复服务请求
@@ -119,7 +119,7 @@ interface OrderInterface @@ -119,7 +119,7 @@ interface OrderInterface
119 * @param array $params 119 * @param array $params
120 * @return ResultSet 120 * @return ResultSet
121 */ 121 */
122 - public function orderReplyService(array $params = []): ResultSet; 122 + public function orderReplyService(array $params = []);
123 123
124 /** 124 /**
125 * 按用户id查询订单简要信息 125 * 按用户id查询订单简要信息
@@ -127,7 +127,7 @@ interface OrderInterface @@ -127,7 +127,7 @@ interface OrderInterface
127 * @param array $params 127 * @param array $params
128 * @return ResultSet 128 * @return ResultSet
129 */ 129 */
130 - public function orderGetUserOrderList(array $params = []): ResultSet; 130 + public function orderGetUserOrderList(array $params = []);
131 131
132 /** 132 /**
133 * 查看商家开票列表 133 * 查看商家开票列表
@@ -135,7 +135,7 @@ interface OrderInterface @@ -135,7 +135,7 @@ interface OrderInterface
135 * @param array $params 135 * @param array $params
136 * @return ResultSet 136 * @return ResultSet
137 */ 137 */
138 - public function orderInvoiceList(array $params = []): ResultSet; 138 + public function orderInvoiceList(array $params = []);
139 139
140 /** 140 /**
141 * 用户在ISV查看订单、下载订单时, 上报事件到风控系统 141 * 用户在ISV查看订单、下载订单时, 上报事件到风控系统
@@ -143,7 +143,7 @@ interface OrderInterface @@ -143,7 +143,7 @@ interface OrderInterface
143 * @param array $params 143 * @param array $params
144 * @return ResultSet 144 * @return ResultSet
145 */ 145 */
146 - public function antispamOrderQuery(array $params = []): ResultSet; 146 + public function antispamOrderQuery(array $params = []);
147 147
148 /** 148 /**
149 * 支持使用在ISV系统商户发送(外部系统或模块,如快递平台)场景 149 * 支持使用在ISV系统商户发送(外部系统或模块,如快递平台)场景
@@ -151,7 +151,7 @@ interface OrderInterface @@ -151,7 +151,7 @@ interface OrderInterface
151 * @param array $params 151 * @param array $params
152 * @return ResultSet 152 * @return ResultSet
153 */ 153 */
154 - public function antispamOrderSend(array $params = []): ResultSet; 154 + public function antispamOrderSend(array $params = []);
155 155
156 /** 156 /**
157 * 批量获取索引串接口 157 * 批量获取索引串接口
@@ -159,7 +159,7 @@ interface OrderInterface @@ -159,7 +159,7 @@ interface OrderInterface
159 * @param array $params 159 * @param array $params
160 * @return ResultSet 160 * @return ResultSet
161 */ 161 */
162 - public function orderBatchSearchIndex(array $params = []): ResultSet; 162 + public function orderBatchSearchIndex(array $params = []);
163 163
164 /** 164 /**
165 * 获取App对于商家订单修改地址的审核权限 165 * 获取App对于商家订单修改地址的审核权限
@@ -167,7 +167,7 @@ interface OrderInterface @@ -167,7 +167,7 @@ interface OrderInterface
167 * @param array $params 167 * @param array $params
168 * @return ResultSet 168 * @return ResultSet
169 */ 169 */
170 - public function orderAddresSwitchConfig(array $params = []): ResultSet; 170 + public function orderAddresSwitchConfig(array $params = []);
171 171
172 /** 172 /**
173 * 买家地址变更确认 173 * 买家地址变更确认
@@ -175,7 +175,7 @@ interface OrderInterface @@ -175,7 +175,7 @@ interface OrderInterface
175 * @param array $params 175 * @param array $params
176 * @return ResultSet 176 * @return ResultSet
177 */ 177 */
178 - public function orderAddressConfirm(array $params = []): ResultSet; 178 + public function orderAddressConfirm(array $params = []);
179 179
180 /** 180 /**
181 * 未支付订单改货款 181 * 未支付订单改货款
@@ -183,7 +183,7 @@ interface OrderInterface @@ -183,7 +183,7 @@ interface OrderInterface
183 * @param array $params 183 * @param array $params
184 * @return ResultSet 184 * @return ResultSet
185 */ 185 */
186 - public function orderUpdateOrderAmount(array $params = []): ResultSet; 186 + public function orderUpdateOrderAmount(array $params = []);
187 187
188 /** 188 /**
189 * 获取服务单列表 189 * 获取服务单列表
@@ -191,7 +191,7 @@ interface OrderInterface @@ -191,7 +191,7 @@ interface OrderInterface
191 * @param array $params 191 * @param array $params
192 * @return ResultSet 192 * @return ResultSet
193 */ 193 */
194 - public function orderGetServiceList(array $params = []): ResultSet; 194 + public function orderGetServiceList(array $params = []);
195 195
196 /** 196 /**
197 * 查询商家服务单详情请求 197 * 查询商家服务单详情请求
@@ -199,7 +199,7 @@ interface OrderInterface @@ -199,7 +199,7 @@ interface OrderInterface
199 * @param array $params 199 * @param array $params
200 * @return ResultSet 200 * @return ResultSet
201 */ 201 */
202 - public function orderServiceDetail(array $params = []): ResultSet; 202 + public function orderServiceDetail(array $params = []);
203 203
204 /** 204 /**
205 * 未支付订单邮费修改 205 * 未支付订单邮费修改
@@ -207,7 +207,7 @@ interface OrderInterface @@ -207,7 +207,7 @@ interface OrderInterface
207 * @param array $params 207 * @param array $params
208 * @return ResultSet 208 * @return ResultSet
209 */ 209 */
210 - public function orderUpdatePostAmount(array $params = []): ResultSet; 210 + public function orderUpdatePostAmount(array $params = []);
211 211
212 /** 212 /**
213 * isv获取虚拟号通话状态申请 213 * isv获取虚拟号通话状态申请
@@ -215,7 +215,7 @@ interface OrderInterface @@ -215,7 +215,7 @@ interface OrderInterface
215 * @param array $params 215 * @param array $params
216 * @return ResultSet 216 * @return ResultSet
217 */ 217 */
218 - public function powerSubscribeVirtualTelCallStatus(array $params = []): ResultSet; 218 + public function powerSubscribeVirtualTelCallStatus(array $params = []);
219 219
220 /** 220 /**
221 * 获取跨境承运单信息 221 * 获取跨境承运单信息
@@ -223,5 +223,5 @@ interface OrderInterface @@ -223,5 +223,5 @@ interface OrderInterface
223 * @param array $params 223 * @param array $params
224 * @return ResultSet 224 * @return ResultSet
225 */ 225 */
226 - public function orderGetCrossBorderFulfillInfo(array $params = []): ResultSet; 226 + public function orderGetCrossBorderFulfillInfo(array $params = []);
227 } 227 }
@@ -15,7 +15,7 @@ interface OrderCodeInterface @@ -15,7 +15,7 @@ interface OrderCodeInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function orderCodeErpShopBindOrderCode(array $params = []): ResultSet; 18 + public function orderCodeErpShopBindOrderCode(array $params = []);
19 19
20 /** 20 /**
21 * 批量下载bic订单码 21 * 批量下载bic订单码
@@ -23,7 +23,7 @@ interface OrderCodeInterface @@ -23,7 +23,7 @@ interface OrderCodeInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function orderCodeBatchGetOrderCodeByShop(array $params = []): ResultSet; 26 + public function orderCodeBatchGetOrderCodeByShop(array $params = []);
27 27
28 /** 28 /**
29 * 下载bic订单码 29 * 下载bic订单码
@@ -31,5 +31,5 @@ interface OrderCodeInterface @@ -31,5 +31,5 @@ interface OrderCodeInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function orderCodeDownloadOrderCodeByShop(array $params = []): ResultSet; 34 + public function orderCodeDownloadOrderCodeByShop(array $params = []);
35 } 35 }
@@ -15,5 +15,5 @@ interface PigeonInterface @@ -15,5 +15,5 @@ interface PigeonInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function pigeonWorkOrderNotify(array $params = []): ResultSet; 18 + public function pigeonWorkOrderNotify(array $params = []);
19 } 19 }
@@ -15,7 +15,7 @@ interface ProductInterface @@ -15,7 +15,7 @@ interface ProductInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function productListV2(array $params = []): ResultSet; 18 + public function productListV2(array $params = []);
19 19
20 /** 20 /**
21 * 发布商品 21 * 发布商品
@@ -23,7 +23,7 @@ interface ProductInterface @@ -23,7 +23,7 @@ interface ProductInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function productAddV2(array $params = []): ResultSet; 26 + public function productAddV2(array $params = []);
27 27
28 /** 28 /**
29 * 编辑商品 29 * 编辑商品
@@ -31,7 +31,7 @@ interface ProductInterface @@ -31,7 +31,7 @@ interface ProductInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function productEditV2(array $params = []): ResultSet; 34 + public function productEditV2(array $params = []);
35 35
36 /** 36 /**
37 * 商品查询 37 * 商品查询
@@ -39,7 +39,7 @@ interface ProductInterface @@ -39,7 +39,7 @@ interface ProductInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function productDetail(array $params = []): ResultSet; 42 + public function productDetail(array $params = []);
43 43
44 /** 44 /**
45 * 删除商品 45 * 删除商品
@@ -47,7 +47,7 @@ interface ProductInterface @@ -47,7 +47,7 @@ interface ProductInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function productDel(array $params = []): ResultSet; 50 + public function productDel(array $params = []);
51 51
52 /** 52 /**
53 * 获取商品sku详情 53 * 获取商品sku详情
@@ -55,7 +55,7 @@ interface ProductInterface @@ -55,7 +55,7 @@ interface ProductInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function skuDetail(array $params = []): ResultSet; 58 + public function skuDetail(array $params = []);
59 59
60 /** 60 /**
61 * 根据类目id获取可选品牌 61 * 根据类目id获取可选品牌
@@ -63,7 +63,7 @@ interface ProductInterface @@ -63,7 +63,7 @@ interface ProductInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function brandList(array $params = []): ResultSet; 66 + public function brandList(array $params = []);
67 67
68 /** 68 /**
69 * 根据商品分类获取对应的属性列表 69 * 根据商品分类获取对应的属性列表
@@ -71,7 +71,7 @@ interface ProductInterface @@ -71,7 +71,7 @@ interface ProductInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function productGetCatePropertyV2(array $params = []): ResultSet; 74 + public function productGetCatePropertyV2(array $params = []);
75 75
76 /** 76 /**
77 * 商品上架 77 * 商品上架
@@ -79,7 +79,7 @@ interface ProductInterface @@ -79,7 +79,7 @@ interface ProductInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function productSetOnline(array $params = []): ResultSet; 82 + public function productSetOnline(array $params = []);
83 83
84 /** 84 /**
85 * 获取商品sku列表 85 * 获取商品sku列表
@@ -87,7 +87,7 @@ interface ProductInterface @@ -87,7 +87,7 @@ interface ProductInterface
87 * @param array $params 87 * @param array $params
88 * @return ResultSet 88 * @return ResultSet
89 */ 89 */
90 - public function skuList(array $params = []): ResultSet; 90 + public function skuList(array $params = []);
91 91
92 /** 92 /**
93 * 商品下架 93 * 商品下架
@@ -95,7 +95,7 @@ interface ProductInterface @@ -95,7 +95,7 @@ interface ProductInterface
95 * @param array $params 95 * @param array $params
96 * @return ResultSet 96 * @return ResultSet
97 */ 97 */
98 - public function productSetOffline(array $params = []): ResultSet; 98 + public function productSetOffline(array $params = []);
99 99
100 /** 100 /**
101 * 店铺商品质量查询API 101 * 店铺商品质量查询API
@@ -103,7 +103,7 @@ interface ProductInterface @@ -103,7 +103,7 @@ interface ProductInterface
103 * @param array $params 103 * @param array $params
104 * @return ResultSet 104 * @return ResultSet
105 */ 105 */
106 - public function productQualityList(array $params = []): ResultSet; 106 + public function productQualityList(array $params = []);
107 107
108 /** 108 /**
109 * 修改sku编码 109 * 修改sku编码
@@ -111,7 +111,7 @@ interface ProductInterface @@ -111,7 +111,7 @@ interface ProductInterface
111 * @param array $params 111 * @param array $params
112 * @return ResultSet 112 * @return ResultSet
113 */ 113 */
114 - public function skuEditCode(array $params = []): ResultSet; 114 + public function skuEditCode(array $params = []);
115 115
116 /** 116 /**
117 * 获取类目下需要填写的资质列表 117 * 获取类目下需要填写的资质列表
@@ -119,7 +119,7 @@ interface ProductInterface @@ -119,7 +119,7 @@ interface ProductInterface
119 * @param array $params 119 * @param array $params
120 * @return ResultSet 120 * @return ResultSet
121 */ 121 */
122 - public function productQualificationConfig(array $params = []): ResultSet; 122 + public function productQualificationConfig(array $params = []);
123 123
124 /** 124 /**
125 * 新增跨境/海南商品 125 * 新增跨境/海南商品
@@ -127,7 +127,7 @@ interface ProductInterface @@ -127,7 +127,7 @@ interface ProductInterface
127 * @param array $params 127 * @param array $params
128 * @return ResultSet 128 * @return ResultSet
129 */ 129 */
130 - public function productAddCbProduct(array $params = []): ResultSet; 130 + public function productAddCbProduct(array $params = []);
131 131
132 /** 132 /**
133 * 通过前缀匹配召回品牌信息 133 * 通过前缀匹配召回品牌信息
@@ -135,7 +135,7 @@ interface ProductInterface @@ -135,7 +135,7 @@ interface ProductInterface
135 * @param array $params 135 * @param array $params
136 * @return ResultSet 136 * @return ResultSet
137 */ 137 */
138 - public function brandGetSug(array $params = []): ResultSet; 138 + public function brandGetSug(array $params = []);
139 139
140 /** 140 /**
141 * 编辑一个跨境/海南商品 141 * 编辑一个跨境/海南商品
@@ -143,7 +143,7 @@ interface ProductInterface @@ -143,7 +143,7 @@ interface ProductInterface
143 * @param array $params 143 * @param array $params
144 * @return ResultSet 144 * @return ResultSet
145 */ 145 */
146 - public function productEditCbProduct(array $params = []): ResultSet; 146 + public function productEditCbProduct(array $params = []);
147 147
148 /** 148 /**
149 * 查询商品发布规则 149 * 查询商品发布规则
@@ -151,7 +151,7 @@ interface ProductInterface @@ -151,7 +151,7 @@ interface ProductInterface
151 * @param array $params 151 * @param array $params
152 * @return ResultSet 152 * @return ResultSet
153 */ 153 */
154 - public function productGetProductUpdateRule(array $params = []): ResultSet; 154 + public function productGetProductUpdateRule(array $params = []);
155 155
156 /** 156 /**
157 * 商家发货时效配置推荐 157 * 商家发货时效配置推荐
@@ -159,7 +159,7 @@ interface ProductInterface @@ -159,7 +159,7 @@ interface ProductInterface
159 * @param array $params 159 * @param array $params
160 * @return ResultSet 160 * @return ResultSet
161 */ 161 */
162 - public function promiseDeliveryList(array $params = []): ResultSet; 162 + public function promiseDeliveryList(array $params = []);
163 163
164 /** 164 /**
165 * 兼容老品牌id转为新品牌id 165 * 兼容老品牌id转为新品牌id
@@ -167,7 +167,7 @@ interface ProductInterface @@ -167,7 +167,7 @@ interface ProductInterface
167 * @param array $params 167 * @param array $params
168 * @return ResultSet 168 * @return ResultSet
169 */ 169 */
170 - public function brandConvert(array $params = []): ResultSet; 170 + public function brandConvert(array $params = []);
171 171
172 /** 172 /**
173 * 二段码推送(仅用于兼容老物流网关) 173 * 二段码推送(仅用于兼容老物流网关)
@@ -175,7 +175,7 @@ interface ProductInterface @@ -175,7 +175,7 @@ interface ProductInterface
175 * @param array $params 175 * @param array $params
176 * @return ResultSet 176 * @return ResultSet
177 */ 177 */
178 - public function powerPushSecondSortCode(array $params = []): ResultSet; 178 + public function powerPushSecondSortCode(array $params = []);
179 179
180 /** 180 /**
181 * 编辑一个跨境/海南商品 181 * 编辑一个跨境/海南商品
@@ -183,7 +183,7 @@ interface ProductInterface @@ -183,7 +183,7 @@ interface ProductInterface
183 * @param array $params 183 * @param array $params
184 * @return ResultSet 184 * @return ResultSet
185 */ 185 */
186 - public function productEditCbProductV2(array $params = []): ResultSet; 186 + public function productEditCbProductV2(array $params = []);
187 187
188 /** 188 /**
189 * 审核记录列表 189 * 审核记录列表
@@ -191,7 +191,7 @@ interface ProductInterface @@ -191,7 +191,7 @@ interface ProductInterface
191 * @param array $params 191 * @param array $params
192 * @return ResultSet 192 * @return ResultSet
193 */ 193 */
194 - public function productAuditList(array $params = []): ResultSet; 194 + public function productAuditList(array $params = []);
195 195
196 /** 196 /**
197 * 机会品提报进度查询 197 * 机会品提报进度查询
@@ -199,7 +199,7 @@ interface ProductInterface @@ -199,7 +199,7 @@ interface ProductInterface
199 * @param array $params 199 * @param array $params
200 * @return ResultSet 200 * @return ResultSet
201 */ 201 */
202 - public function opptyProductGetApplyProgress(array $params = []): ResultSet; 202 + public function opptyProductGetApplyProgress(array $params = []);
203 203
204 /** 204 /**
205 * 机会品提报 205 * 机会品提报
@@ -207,7 +207,7 @@ interface ProductInterface @@ -207,7 +207,7 @@ interface ProductInterface
207 * @param array $params 207 * @param array $params
208 * @return ResultSet 208 * @return ResultSet
209 */ 209 */
210 - public function opptyProductApply(array $params = []): ResultSet; 210 + public function opptyProductApply(array $params = []);
211 211
212 /** 212 /**
213 * 商品信息质量分查询API 213 * 商品信息质量分查询API
@@ -215,7 +215,7 @@ interface ProductInterface @@ -215,7 +215,7 @@ interface ProductInterface
215 * @param array $params 215 * @param array $params
216 * @return ResultSet 216 * @return ResultSet
217 */ 217 */
218 - public function productQualityDetail(array $params = []): ResultSet; 218 + public function productQualityDetail(array $params = []);
219 219
220 /** 220 /**
221 * 商品每日诊断任务查询API 221 * 商品每日诊断任务查询API
@@ -223,7 +223,7 @@ interface ProductInterface @@ -223,7 +223,7 @@ interface ProductInterface
223 * @param array $params 223 * @param array $params
224 * @return ResultSet 224 * @return ResultSet
225 */ 225 */
226 - public function productQualityTask(array $params = []): ResultSet; 226 + public function productQualityTask(array $params = []);
227 227
228 /** 228 /**
229 * 设置商品限购 229 * 设置商品限购
@@ -231,7 +231,7 @@ interface ProductInterface @@ -231,7 +231,7 @@ interface ProductInterface
231 * @param array $params 231 * @param array $params
232 * @return ResultSet 232 * @return ResultSet
233 */ 233 */
234 - public function productEditBuyerLimit(array $params = []): ResultSet; 234 + public function productEditBuyerLimit(array $params = []);
235 235
236 /** 236 /**
237 * 机会品线索触达 237 * 机会品线索触达
@@ -239,7 +239,7 @@ interface ProductInterface @@ -239,7 +239,7 @@ interface ProductInterface
239 * @param array $params 239 * @param array $params
240 * @return ResultSet 240 * @return ResultSet
241 */ 241 */
242 - public function opptyProductClue(array $params = []): ResultSet; 242 + public function opptyProductClue(array $params = []);
243 243
244 /** 244 /**
245 * 店铺新增SPU 245 * 店铺新增SPU
@@ -247,7 +247,7 @@ interface ProductInterface @@ -247,7 +247,7 @@ interface ProductInterface
247 * @param array $params 247 * @param array $params
248 * @return ResultSet 248 * @return ResultSet
249 */ 249 */
250 - public function spuAddShopSpu(array $params = []): ResultSet; 250 + public function spuAddShopSpu(array $params = []);
251 251
252 /** 252 /**
253 * 获取spu模板 253 * 获取spu模板
@@ -255,7 +255,7 @@ interface ProductInterface @@ -255,7 +255,7 @@ interface ProductInterface
255 * @param array $params 255 * @param array $params
256 * @return ResultSet 256 * @return ResultSet
257 */ 257 */
258 - public function spuGetSpuTpl(array $params = []): ResultSet; 258 + public function spuGetSpuTpl(array $params = []);
259 259
260 /** 260 /**
261 * SPU信息查看 261 * SPU信息查看
@@ -263,7 +263,7 @@ interface ProductInterface @@ -263,7 +263,7 @@ interface ProductInterface
263 * @param array $params 263 * @param array $params
264 * @return ResultSet 264 * @return ResultSet
265 */ 265 */
266 - public function spuGetSpuInfoBySpuId(array $params = []): ResultSet; 266 + public function spuGetSpuInfoBySpuId(array $params = []);
267 267
268 /** 268 /**
269 * 关键属性查询接口 269 * 关键属性查询接口
@@ -271,7 +271,7 @@ interface ProductInterface @@ -271,7 +271,7 @@ interface ProductInterface
271 * @param array $params 271 * @param array $params
272 * @return ResultSet 272 * @return ResultSet
273 */ 273 */
274 - public function spuGetKeyPropertyByCid(array $params = []): ResultSet; 274 + public function spuGetKeyPropertyByCid(array $params = []);
275 275
276 /** 276 /**
277 * 编辑sku价格 277 * 编辑sku价格
@@ -279,7 +279,7 @@ interface ProductInterface @@ -279,7 +279,7 @@ interface ProductInterface
279 * @param array $params 279 * @param array $params
280 * @return ResultSet 280 * @return ResultSet
281 */ 281 */
282 - public function skuEditPrice(array $params = []): ResultSet; 282 + public function skuEditPrice(array $params = []);
283 283
284 /** 284 /**
285 * 商品类目预测 285 * 商品类目预测
@@ -287,7 +287,7 @@ interface ProductInterface @@ -287,7 +287,7 @@ interface ProductInterface
287 * @param array $params 287 * @param array $params
288 * @return ResultSet 288 * @return ResultSet
289 */ 289 */
290 - public function productGetRecommendCategory(array $params = []): ResultSet; 290 + public function productGetRecommendCategory(array $params = []);
291 291
292 /** 292 /**
293 * 编辑尺码模板 293 * 编辑尺码模板
@@ -295,7 +295,7 @@ interface ProductInterface @@ -295,7 +295,7 @@ interface ProductInterface
295 * @param array $params 295 * @param array $params
296 * @return ResultSet 296 * @return ResultSet
297 */ 297 */
298 - public function productEditComponentTemplate(array $params = []): ResultSet; 298 + public function productEditComponentTemplate(array $params = []);
299 299
300 /** 300 /**
301 * 创建尺码模板 301 * 创建尺码模板
@@ -303,7 +303,7 @@ interface ProductInterface @@ -303,7 +303,7 @@ interface ProductInterface
303 * @param array $params 303 * @param array $params
304 * @return ResultSet 304 * @return ResultSet
305 */ 305 */
306 - public function productCreateComponentTemplateV2(array $params = []): ResultSet; 306 + public function productCreateComponentTemplateV2(array $params = []);
307 307
308 /** 308 /**
309 * 分页查询模板列表 309 * 分页查询模板列表
@@ -311,5 +311,5 @@ interface ProductInterface @@ -311,5 +311,5 @@ interface ProductInterface
311 * @param array $params 311 * @param array $params
312 * @return ResultSet 312 * @return ResultSet
313 */ 313 */
314 - public function productGetComponentTemplate(array $params = []): ResultSet; 314 + public function productGetComponentTemplate(array $params = []);
315 } 315 }
@@ -15,7 +15,7 @@ interface RecycleInterface @@ -15,7 +15,7 @@ interface RecycleInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function recycleBuyerGetOrderList(array $params = []): ResultSet; 18 + public function recycleBuyerGetOrderList(array $params = []);
19 19
20 /** 20 /**
21 * 获得订单详情 21 * 获得订单详情
@@ -23,7 +23,7 @@ interface RecycleInterface @@ -23,7 +23,7 @@ interface RecycleInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function recycleBuyerGetOrderDetail(array $params = []): ResultSet; 26 + public function recycleBuyerGetOrderDetail(array $params = []);
27 27
28 /** 28 /**
29 * 设置尾款信息 29 * 设置尾款信息
@@ -31,7 +31,7 @@ interface RecycleInterface @@ -31,7 +31,7 @@ interface RecycleInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function shopSetFinalPayment(array $params = []): ResultSet; 34 + public function shopSetFinalPayment(array $params = []);
35 35
36 /** 36 /**
37 * 回收商申请调价 37 * 回收商申请调价
@@ -39,7 +39,7 @@ interface RecycleInterface @@ -39,7 +39,7 @@ interface RecycleInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function recycleApplyChangePrice(array $params = []): ResultSet; 42 + public function recycleApplyChangePrice(array $params = []);
43 43
44 /** 44 /**
45 * 回收商退货发货 45 * 回收商退货发货
@@ -47,7 +47,7 @@ interface RecycleInterface @@ -47,7 +47,7 @@ interface RecycleInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function recycleLogisticsBack(array $params = []): ResultSet; 50 + public function recycleLogisticsBack(array $params = []);
51 51
52 /** 52 /**
53 * 寄售成功 53 * 寄售成功
@@ -55,7 +55,7 @@ interface RecycleInterface @@ -55,7 +55,7 @@ interface RecycleInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function recycleSellSucceed(array $params = []): ResultSet; 58 + public function recycleSellSucceed(array $params = []);
59 59
60 /** 60 /**
61 * 回收商在用户确认前调整报价接口 61 * 回收商在用户确认前调整报价接口
@@ -63,7 +63,7 @@ interface RecycleInterface @@ -63,7 +63,7 @@ interface RecycleInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function recycleChangePrice(array $params = []): ResultSet; 66 + public function recycleChangePrice(array $params = []);
67 67
68 /** 68 /**
69 * 回传质检通过和价格 69 * 回传质检通过和价格
@@ -71,7 +71,7 @@ interface RecycleInterface @@ -71,7 +71,7 @@ interface RecycleInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function recycleQualityTestingResult(array $params = []): ResultSet; 74 + public function recycleQualityTestingResult(array $params = []);
75 75
76 /** 76 /**
77 * 回收商确认收货操作 77 * 回收商确认收货操作
@@ -79,7 +79,7 @@ interface RecycleInterface @@ -79,7 +79,7 @@ interface RecycleInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function recycleConfirmReceive(array $params = []): ResultSet; 82 + public function recycleConfirmReceive(array $params = []);
83 83
84 /** 84 /**
85 * 上传估价 85 * 上传估价
@@ -87,5 +87,5 @@ interface RecycleInterface @@ -87,5 +87,5 @@ interface RecycleInterface
87 * @param array $params 87 * @param array $params
88 * @return ResultSet 88 * @return ResultSet
89 */ 89 */
90 - public function recycleCreatePrice(array $params = []): ResultSet; 90 + public function recycleCreatePrice(array $params = []);
91 } 91 }
@@ -14,7 +14,7 @@ interface SmsInterface @@ -14,7 +14,7 @@ interface SmsInterface
14 * @param array $params 14 * @param array $params
15 * @return ResultSet 15 * @return ResultSet
16 */ 16 */
17 - function smsTemplate/apply(array $params = []): ResultSet; 17 + function smsTemplate/apply(array $params = []);
18 18
19 /** 19 /**
20 * 公共模版查询接口 20 * 公共模版查询接口
@@ -22,7 +22,7 @@ interface SmsInterface @@ -22,7 +22,7 @@ interface SmsInterface
22 * @param array $params 22 * @param array $params
23 * @return ResultSet 23 * @return ResultSet
24 */ 24 */
25 - function smsPublic/template(array $params = []): ResultSet; 25 + function smsPublic/template(array $params = []);
26 26
27 /** 27 /**
28 * 提交短信签名申请单 28 * 提交短信签名申请单
@@ -30,7 +30,7 @@ interface SmsInterface @@ -30,7 +30,7 @@ interface SmsInterface
30 * @param array $params 30 * @param array $params
31 * @return ResultSet 31 * @return ResultSet
32 */ 32 */
33 - function smsSign/apply(array $params = []): ResultSet; 33 + function smsSign/apply(array $params = []);
34 34
35 /** 35 /**
36 * 撤销短信模板申请单 36 * 撤销短信模板申请单
@@ -38,7 +38,7 @@ interface SmsInterface @@ -38,7 +38,7 @@ interface SmsInterface
38 * @param array $params 38 * @param array $params
39 * @return ResultSet 39 * @return ResultSet
40 */ 40 */
41 - function smsTemplate/revoke(array $params = []): ResultSet; 41 + function smsTemplate/revoke(array $params = []);
42 42
43 /** 43 /**
44 * 查看短信签名申请单 44 * 查看短信签名申请单
@@ -46,7 +46,7 @@ interface SmsInterface @@ -46,7 +46,7 @@ interface SmsInterface
46 * @param array $params 46 * @param array $params
47 * @return ResultSet 47 * @return ResultSet
48 */ 48 */
49 - function smsSign/apply/list(array $params = []): ResultSet; 49 + function smsSign/apply/list(array $params = []);
50 50
51 /** 51 /**
52 * 短信发送 52 * 短信发送
@@ -54,7 +54,7 @@ interface SmsInterface @@ -54,7 +54,7 @@ interface SmsInterface
54 * @param array $params 54 * @param array $params
55 * @return ResultSet 55 * @return ResultSet
56 */ 56 */
57 - function smsSend(array $params = []): ResultSet; 57 + function smsSend(array $params = []);
58 58
59 /** 59 /**
60 * 批量短信发送 60 * 批量短信发送
@@ -62,7 +62,7 @@ interface SmsInterface @@ -62,7 +62,7 @@ interface SmsInterface
62 * @param array $params 62 * @param array $params
63 * @return ResultSet 63 * @return ResultSet
64 */ 64 */
65 - function smsBatchSend(array $params = []): ResultSet; 65 + function smsBatchSend(array $params = []);
66 66
67 /** 67 /**
68 * 删除短信签名 68 * 删除短信签名
@@ -70,7 +70,7 @@ interface SmsInterface @@ -70,7 +70,7 @@ interface SmsInterface
70 * @param array $params 70 * @param array $params
71 * @return ResultSet 71 * @return ResultSet
72 */ 72 */
73 - function smsSign/delete(array $params = []): ResultSet; 73 + function smsSign/delete(array $params = []);
74 74
75 /** 75 /**
76 * 撤销短信签名申请单 76 * 撤销短信签名申请单
@@ -78,7 +78,7 @@ interface SmsInterface @@ -78,7 +78,7 @@ interface SmsInterface
78 * @param array $params 78 * @param array $params
79 * @return ResultSet 79 * @return ResultSet
80 */ 80 */
81 - function smsSign/apply/revoke(array $params = []): ResultSet; 81 + function smsSign/apply/revoke(array $params = []);
82 82
83 /** 83 /**
84 * 删除短信模板 84 * 删除短信模板
@@ -86,7 +86,7 @@ interface SmsInterface @@ -86,7 +86,7 @@ interface SmsInterface
86 * @param array $params 86 * @param array $params
87 * @return ResultSet 87 * @return ResultSet
88 */ 88 */
89 - function smsTemplate/delete(array $params = []): ResultSet; 89 + function smsTemplate/delete(array $params = []);
90 90
91 /** 91 /**
92 * 查询短信发送结果 92 * 查询短信发送结果
@@ -94,7 +94,7 @@ interface SmsInterface @@ -94,7 +94,7 @@ interface SmsInterface
94 * @param array $params 94 * @param array $params
95 * @return ResultSet 95 * @return ResultSet
96 */ 96 */
97 - function smsSendResult(array $params = []): ResultSet; 97 + function smsSendResult(array $params = []);
98 98
99 /** 99 /**
100 * 查询短信模板申请单 100 * 查询短信模板申请单
@@ -102,7 +102,7 @@ interface SmsInterface @@ -102,7 +102,7 @@ interface SmsInterface
102 * @param array $params 102 * @param array $params
103 * @return ResultSet 103 * @return ResultSet
104 */ 104 */
105 - function smsTemplate/apply/list(array $params = []): ResultSet; 105 + function smsTemplate/apply/list(array $params = []);
106 106
107 /** 107 /**
108 * 查看短信签名 108 * 查看短信签名
@@ -110,7 +110,7 @@ interface SmsInterface @@ -110,7 +110,7 @@ interface SmsInterface
110 * @param array $params 110 * @param array $params
111 * @return ResultSet 111 * @return ResultSet
112 */ 112 */
113 - function smsSign/search(array $params = []): ResultSet; 113 + function smsSign/search(array $params = []);
114 114
115 /** 115 /**
116 * 查询短信模板 116 * 查询短信模板
@@ -118,5 +118,5 @@ interface SmsInterface @@ -118,5 +118,5 @@ interface SmsInterface
118 * @param array $params 118 * @param array $params
119 * @return ResultSet 119 * @return ResultSet
120 */ 120 */
121 - function smsTemplate/search(array $params = []): ResultSet; 121 + function smsTemplate/search(array $params = []);
122 } 122 }
@@ -15,7 +15,7 @@ interface SupplyChainInterface @@ -15,7 +15,7 @@ interface SupplyChainInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function supplyChainGetOrderByOrderNo(array $params = []): ResultSet; 18 + public function supplyChainGetOrderByOrderNo(array $params = []);
19 19
20 /** 20 /**
21 * 供货单更新发货物流 21 * 供货单更新发货物流
@@ -23,7 +23,7 @@ interface SupplyChainInterface @@ -23,7 +23,7 @@ interface SupplyChainInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function supplyChainUpdateConsign(array $params = []): ResultSet; 26 + public function supplyChainUpdateConsign(array $params = []);
27 27
28 /** 28 /**
29 * 供货单发货 29 * 供货单发货
@@ -31,7 +31,7 @@ interface SupplyChainInterface @@ -31,7 +31,7 @@ interface SupplyChainInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function supplyChainSupplyConsign(array $params = []): ResultSet; 34 + public function supplyChainSupplyConsign(array $params = []);
35 35
36 /** 36 /**
37 * 供货单列表查询 37 * 供货单列表查询
@@ -39,5 +39,5 @@ interface SupplyChainInterface @@ -39,5 +39,5 @@ interface SupplyChainInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function supplyChainGetSupplyOrderList(array $params = []): ResultSet; 42 + public function supplyChainGetSupplyOrderList(array $params = []);
43 } 43 }
@@ -15,7 +15,7 @@ interface TokenInterface @@ -15,7 +15,7 @@ interface TokenInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function rightsInfo(array $params = []): ResultSet; 18 + public function rightsInfo(array $params = []);
19 19
20 /** 20 /**
21 * 刷新 token API 21 * 刷新 token API
@@ -23,7 +23,7 @@ interface TokenInterface @@ -23,7 +23,7 @@ interface TokenInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function tokenRefresh(array $params = []): ResultSet; 26 + public function tokenRefresh(array $params = []);
27 27
28 /** 28 /**
29 * 生成token API 29 * 生成token API
@@ -31,7 +31,7 @@ interface TokenInterface @@ -31,7 +31,7 @@ interface TokenInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function tokenCreate(array $params = []): ResultSet; 34 + public function tokenCreate(array $params = []);
35 35
36 /** 36 /**
37 * 批量上报订单安全事件接口 37 * 批量上报订单安全事件接口
@@ -39,7 +39,7 @@ interface TokenInterface @@ -39,7 +39,7 @@ interface TokenInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function securityBatchReportOrderSecurityEvent(array $params = []): ResultSet; 42 + public function securityBatchReportOrderSecurityEvent(array $params = []);
43 43
44 /** 44 /**
45 * 新增应用ip白名单 45 * 新增应用ip白名单
@@ -47,5 +47,5 @@ interface TokenInterface @@ -47,5 +47,5 @@ interface TokenInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function openAppIpWhiteListAdd(array $params = []): ResultSet; 50 + public function openAppIpWhiteListAdd(array $params = []);
51 } 51 }
@@ -15,7 +15,7 @@ interface TopupInterface @@ -15,7 +15,7 @@ interface TopupInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function topupResult(array $params = []): ResultSet; 18 + public function topupResult(array $params = []);
19 19
20 /** 20 /**
21 * 获取叶子类目可选的账号模板id 21 * 获取叶子类目可选的账号模板id
@@ -23,5 +23,5 @@ interface TopupInterface @@ -23,5 +23,5 @@ interface TopupInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function topupAccountTemplateList(array $params = []): ResultSet; 26 + public function topupAccountTemplateList(array $params = []);
27 } 27 }
@@ -14,7 +14,7 @@ interface WarehouseInterface @@ -14,7 +14,7 @@ interface WarehouseInterface
14 * @param array $params 14 * @param array $params
15 * @return ResultSet 15 * @return ResultSet
16 */ 16 */
17 - function skuStockNum(array $params = []): ResultSet; 17 + function skuStockNum(array $params = []);
18 18
19 /** 19 /**
20 * 修改sku库存 20 * 修改sku库存
@@ -22,7 +22,7 @@ interface WarehouseInterface @@ -22,7 +22,7 @@ interface WarehouseInterface
22 * @param array $params 22 * @param array $params
23 * @return ResultSet 23 * @return ResultSet
24 */ 24 */
25 - function skuSyncStock(array $params = []): ResultSet; 25 + function skuSyncStock(array $params = []);
26 26
27 /** 27 /**
28 * 库存调整(盘点和转移) 28 * 库存调整(盘点和转移)
@@ -30,7 +30,7 @@ interface WarehouseInterface @@ -30,7 +30,7 @@ interface WarehouseInterface
30 * @param array $params 30 * @param array $params
31 * @return ResultSet 31 * @return ResultSet
32 */ 32 */
33 - function /warehouse/adjustInventory(array $params = []): ResultSet; 33 + function /warehouse/adjustInventory(array $params = []);
34 34
35 /** 35 /**
36 * 批量同步接口 36 * 批量同步接口
@@ -38,7 +38,7 @@ interface WarehouseInterface @@ -38,7 +38,7 @@ interface WarehouseInterface
38 * @param array $params 38 * @param array $params
39 * @return ResultSet 39 * @return ResultSet
40 */ 40 */
41 - function skuSyncStockBatch(array $params = []): ResultSet; 41 + function skuSyncStockBatch(array $params = []);
42 42
43 /** 43 /**
44 * 修改围栏信息 44 * 修改围栏信息
@@ -46,7 +46,7 @@ interface WarehouseInterface @@ -46,7 +46,7 @@ interface WarehouseInterface
46 * @param array $params 46 * @param array $params
47 * @return ResultSet 47 * @return ResultSet
48 */ 48 */
49 - function warehouseSetFence(array $params = []): ResultSet; 49 + function warehouseSetFence(array $params = []);
50 50
51 /** 51 /**
52 * 获取电子围栏信息/列表 52 * 获取电子围栏信息/列表
@@ -54,7 +54,7 @@ interface WarehouseInterface @@ -54,7 +54,7 @@ interface WarehouseInterface
54 * @param array $params 54 * @param array $params
55 * @return ResultSet 55 * @return ResultSet
56 */ 56 */
57 - function warehouseGetFences(array $params = []): ResultSet; 57 + function warehouseGetFences(array $params = []);
58 58
59 /** 59 /**
60 * 创建电子围栏 60 * 创建电子围栏
@@ -62,7 +62,7 @@ interface WarehouseInterface @@ -62,7 +62,7 @@ interface WarehouseInterface
62 * @param array $params 62 * @param array $params
63 * @return ResultSet 63 * @return ResultSet
64 */ 64 */
65 - function warehouseCreateFence(array $params = []): ResultSet; 65 + function warehouseCreateFence(array $params = []);
66 66
67 /** 67 /**
68 * 接绑电子围栏 68 * 接绑电子围栏
@@ -70,7 +70,7 @@ interface WarehouseInterface @@ -70,7 +70,7 @@ interface WarehouseInterface
70 * @param array $params 70 * @param array $params
71 * @return ResultSet 71 * @return ResultSet
72 */ 72 */
73 - function warehouseUnbindFences(array $params = []): ResultSet; 73 + function warehouseUnbindFences(array $params = []);
74 74
75 /** 75 /**
76 * 地址与区域仓解绑 76 * 地址与区域仓解绑
@@ -78,7 +78,7 @@ interface WarehouseInterface @@ -78,7 +78,7 @@ interface WarehouseInterface
78 * @param array $params 78 * @param array $params
79 * @return ResultSet 79 * @return ResultSet
80 */ 80 */
81 - function warehouseRemoveAddr(array $params = []): ResultSet; 81 + function warehouseRemoveAddr(array $params = []);
82 82
83 /** 83 /**
84 * 设置sku发货时效 84 * 设置sku发货时效
@@ -86,7 +86,7 @@ interface WarehouseInterface @@ -86,7 +86,7 @@ interface WarehouseInterface
86 * @param array $params 86 * @param array $params
87 * @return ResultSet 87 * @return ResultSet
88 */ 88 */
89 - function promiseSetSkuShipTime(array $params = []): ResultSet; 89 + function promiseSetSkuShipTime(array $params = []);
90 90
91 /** 91 /**
92 * 查询区域仓 92 * 查询区域仓
@@ -94,7 +94,7 @@ interface WarehouseInterface @@ -94,7 +94,7 @@ interface WarehouseInterface
94 * @param array $params 94 * @param array $params
95 * @return ResultSet 95 * @return ResultSet
96 */ 96 */
97 - function warehouseInfo(array $params = []): ResultSet; 97 + function warehouseInfo(array $params = []);
98 98
99 /** 99 /**
100 * 编辑区域仓 100 * 编辑区域仓
@@ -102,7 +102,7 @@ interface WarehouseInterface @@ -102,7 +102,7 @@ interface WarehouseInterface
102 * @param array $params 102 * @param array $params
103 * @return ResultSet 103 * @return ResultSet
104 */ 104 */
105 - function warehouseEdit(array $params = []): ResultSet; 105 + function warehouseEdit(array $params = []);
106 106
107 /** 107 /**
108 * 创建单个区域仓 108 * 创建单个区域仓
@@ -110,7 +110,7 @@ interface WarehouseInterface @@ -110,7 +110,7 @@ interface WarehouseInterface
110 * @param array $params 110 * @param array $params
111 * @return ResultSet 111 * @return ResultSet
112 */ 112 */
113 - function warehouseCreate(array $params = []): ResultSet; 113 + function warehouseCreate(array $params = []);
114 114
115 /** 115 /**
116 * 绑定单个地址到区域仓 116 * 绑定单个地址到区域仓
@@ -118,7 +118,7 @@ interface WarehouseInterface @@ -118,7 +118,7 @@ interface WarehouseInterface
118 * @param array $params 118 * @param array $params
119 * @return ResultSet 119 * @return ResultSet
120 */ 120 */
121 - function warehouseSetAddr(array $params = []): ResultSet; 121 + function warehouseSetAddr(array $params = []);
122 122
123 /** 123 /**
124 * 批量查询区域仓 124 * 批量查询区域仓
@@ -126,7 +126,7 @@ interface WarehouseInterface @@ -126,7 +126,7 @@ interface WarehouseInterface
126 * @param array $params 126 * @param array $params
127 * @return ResultSet 127 * @return ResultSet
128 */ 128 */
129 - function warehouseList(array $params = []): ResultSet; 129 + function warehouseList(array $params = []);
130 130
131 /** 131 /**
132 * 批量绑定地址与区域仓 132 * 批量绑定地址与区域仓
@@ -134,7 +134,7 @@ interface WarehouseInterface @@ -134,7 +134,7 @@ interface WarehouseInterface
134 * @param array $params 134 * @param array $params
135 * @return ResultSet 135 * @return ResultSet
136 */ 136 */
137 - function warehouseSetAddrBatch(array $params = []): ResultSet; 137 + function warehouseSetAddrBatch(array $params = []);
138 138
139 /** 139 /**
140 * 批量创建区域仓 140 * 批量创建区域仓
@@ -142,7 +142,7 @@ interface WarehouseInterface @@ -142,7 +142,7 @@ interface WarehouseInterface
142 * @param array $params 142 * @param array $params
143 * @return ResultSet 143 * @return ResultSet
144 */ 144 */
145 - function warehouseCreateBatch(array $params = []): ResultSet; 145 + function warehouseCreateBatch(array $params = []);
146 146
147 /** 147 /**
148 * 设置指定地址下的仓的优先级 148 * 设置指定地址下的仓的优先级
@@ -150,7 +150,7 @@ interface WarehouseInterface @@ -150,7 +150,7 @@ interface WarehouseInterface
150 * @param array $params 150 * @param array $params
151 * @return ResultSet 151 * @return ResultSet
152 */ 152 */
153 - function warehouseSetPriority(array $params = []): ResultSet; 153 + function warehouseSetPriority(array $params = []);
154 154
155 /** 155 /**
156 * 删除电子围栏 156 * 删除电子围栏
@@ -158,7 +158,7 @@ interface WarehouseInterface @@ -158,7 +158,7 @@ interface WarehouseInterface
158 * @param array $params 158 * @param array $params
159 * @return ResultSet 159 * @return ResultSet
160 */ 160 */
161 - function warehouseDelFence(array $params = []): ResultSet; 161 + function warehouseDelFence(array $params = []);
162 162
163 /** 163 /**
164 * 仓绑定电子围栏 164 * 仓绑定电子围栏
@@ -166,5 +166,5 @@ interface WarehouseInterface @@ -166,5 +166,5 @@ interface WarehouseInterface
166 * @param array $params 166 * @param array $params
167 * @return ResultSet 167 * @return ResultSet
168 */ 168 */
169 - function warehouseBindFences(array $params = []): ResultSet; 169 + function warehouseBindFences(array $params = []);
170 } 170 }
@@ -15,7 +15,7 @@ interface YuncInterface @@ -15,7 +15,7 @@ interface YuncInterface
15 * @param array $params 15 * @param array $params
16 * @return ResultSet 16 * @return ResultSet
17 */ 17 */
18 - public function yuncShopWarehouseRefQuery(array $params = []): ResultSet; 18 + public function yuncShopWarehouseRefQuery(array $params = []);
19 19
20 /** 20 /**
21 * WMS出库明细回传 21 * WMS出库明细回传
@@ -23,7 +23,7 @@ interface YuncInterface @@ -23,7 +23,7 @@ interface YuncInterface
23 * @param array $params 23 * @param array $params
24 * @return ResultSet 24 * @return ResultSet
25 */ 25 */
26 - public function wmsOutboundDetailNotify(array $params = []): ResultSet; 26 + public function wmsOutboundDetailNotify(array $params = []);
27 27
28 /** 28 /**
29 * 货品推送接口-ERP(单个) 29 * 货品推送接口-ERP(单个)
@@ -31,7 +31,7 @@ interface YuncInterface @@ -31,7 +31,7 @@ interface YuncInterface
31 * @param array $params 31 * @param array $params
32 * @return ResultSet 32 * @return ResultSet
33 */ 33 */
34 - public function yuncErpCargoSinglePush(array $params = []): ResultSet; 34 + public function yuncErpCargoSinglePush(array $params = []);
35 35
36 /** 36 /**
37 * wms入库单回告 37 * wms入库单回告
@@ -39,7 +39,7 @@ interface YuncInterface @@ -39,7 +39,7 @@ interface YuncInterface
39 * @param array $params 39 * @param array $params
40 * @return ResultSet 40 * @return ResultSet
41 */ 41 */
42 - public function yuncWmsInboundCallback(array $params = []): ResultSet; 42 + public function yuncWmsInboundCallback(array $params = []);
43 43
44 /** 44 /**
45 * toB出库单 45 * toB出库单
@@ -47,7 +47,7 @@ interface YuncInterface @@ -47,7 +47,7 @@ interface YuncInterface
47 * @param array $params 47 * @param array $params
48 * @return ResultSet 48 * @return ResultSet
49 */ 49 */
50 - public function yuncCreateOutboundOrderToB(array $params = []): ResultSet; 50 + public function yuncCreateOutboundOrderToB(array $params = []);
51 51
52 /** 52 /**
53 * erp创建入库单 53 * erp创建入库单
@@ -55,7 +55,7 @@ interface YuncInterface @@ -55,7 +55,7 @@ interface YuncInterface
55 * @param array $params 55 * @param array $params
56 * @return ResultSet 56 * @return ResultSet
57 */ 57 */
58 - public function yuncErpInboundCreate(array $params = []): ResultSet; 58 + public function yuncErpInboundCreate(array $params = []);
59 59
60 /** 60 /**
61 * 云仓出库接单 61 * 云仓出库接单
@@ -63,7 +63,7 @@ interface YuncInterface @@ -63,7 +63,7 @@ interface YuncInterface
63 * @param array $params 63 * @param array $params
64 * @return ResultSet 64 * @return ResultSet
65 */ 65 */
66 - public function yuncCloudCreateOutboundOrder(array $params = []): ResultSet; 66 + public function yuncCloudCreateOutboundOrder(array $params = []);
67 67
68 /** 68 /**
69 * 云仓出库取消 69 * 云仓出库取消
@@ -71,7 +71,7 @@ interface YuncInterface @@ -71,7 +71,7 @@ interface YuncInterface
71 * @param array $params 71 * @param array $params
72 * @return ResultSet 72 * @return ResultSet
73 */ 73 */
74 - public function yuncCloudCancelOutboundOrder(array $params = []): ResultSet; 74 + public function yuncCloudCancelOutboundOrder(array $params = []);
75 75
76 /** 76 /**
77 * 销退单入库 77 * 销退单入库
@@ -79,7 +79,7 @@ interface YuncInterface @@ -79,7 +79,7 @@ interface YuncInterface
79 * @param array $params 79 * @param array $params
80 * @return ResultSet 80 * @return ResultSet
81 */ 81 */
82 - public function yuncCloudCreateInboundOrder(array $params = []): ResultSet; 82 + public function yuncCloudCreateInboundOrder(array $params = []);
83 83
84 /** 84 /**
85 * toB场景取消出库单 85 * toB场景取消出库单
@@ -87,7 +87,7 @@ interface YuncInterface @@ -87,7 +87,7 @@ interface YuncInterface
87 * @param array $params 87 * @param array $params
88 * @return ResultSet 88 * @return ResultSet
89 */ 89 */
90 - public function yuncCancelOutboundOrderToB(array $params = []): ResultSet; 90 + public function yuncCancelOutboundOrderToB(array $params = []);
91 91
92 /** 92 /**
93 * 仓储系统回传发货信息 93 * 仓储系统回传发货信息
@@ -95,7 +95,7 @@ interface YuncInterface @@ -95,7 +95,7 @@ interface YuncInterface
95 * @param array $params 95 * @param array $params
96 * @return ResultSet 96 * @return ResultSet
97 */ 97 */
98 - public function wmsDeliveryInfoNotify(array $params = []): ResultSet; 98 + public function wmsDeliveryInfoNotify(array $params = []);
99 99
100 /** 100 /**
101 * 入库明细回传,WMS回传入库数据时,使用该接口回传 101 * 入库明细回传,WMS回传入库数据时,使用该接口回传
@@ -103,7 +103,7 @@ interface YuncInterface @@ -103,7 +103,7 @@ interface YuncInterface
103 * @param array $params 103 * @param array $params
104 * @return ResultSet 104 * @return ResultSet
105 */ 105 */
106 - public function wmsInboundDetailNotify(array $params = []): ResultSet; 106 + public function wmsInboundDetailNotify(array $params = []);
107 107
108 /** 108 /**
109 * 云仓出库接单toB 109 * 云仓出库接单toB
@@ -111,7 +111,7 @@ interface YuncInterface @@ -111,7 +111,7 @@ interface YuncInterface
111 * @param array $params 111 * @param array $params
112 * @return ResultSet 112 * @return ResultSet
113 */ 113 */
114 - public function yuncCloudCreateOutboundOrderToB(array $params = []): ResultSet; 114 + public function yuncCloudCreateOutboundOrderToB(array $params = []);
115 115
116 /** 116 /**
117 * erp创建入库单 117 * erp创建入库单
@@ -119,7 +119,7 @@ interface YuncInterface @@ -119,7 +119,7 @@ interface YuncInterface
119 * @param array $params 119 * @param array $params
120 * @return ResultSet 120 * @return ResultSet
121 */ 121 */
122 - public function yuncCloudCreateInboundOrderToB(array $params = []): ResultSet; 122 + public function yuncCloudCreateInboundOrderToB(array $params = []);
123 123
124 /** 124 /**
125 * 云仓出库取消toB 125 * 云仓出库取消toB
@@ -127,7 +127,7 @@ interface YuncInterface @@ -127,7 +127,7 @@ interface YuncInterface
127 * @param array $params 127 * @param array $params
128 * @return ResultSet 128 * @return ResultSet
129 */ 129 */
130 - public function yuncCloudCancelOutboundOrderToB(array $params = []): ResultSet; 130 + public function yuncCloudCancelOutboundOrderToB(array $params = []);
131 131
132 /** 132 /**
133 * 普通入库取消 133 * 普通入库取消
@@ -135,7 +135,7 @@ interface YuncInterface @@ -135,7 +135,7 @@ interface YuncInterface
135 * @param array $params 135 * @param array $params
136 * @return ResultSet 136 * @return ResultSet
137 */ 137 */
138 - public function yuncCloudCancelInboundOrderToB(array $params = []): ResultSet; 138 + public function yuncCloudCancelInboundOrderToB(array $params = []);
139 139
140 /** 140 /**
141 * 素材中心--素材搜索接口 141 * 素材中心--素材搜索接口
@@ -143,7 +143,7 @@ interface YuncInterface @@ -143,7 +143,7 @@ interface YuncInterface
143 * @param array $params 143 * @param array $params
144 * @return ResultSet 144 * @return ResultSet
145 */ 145 */
146 - public function materialSearchMaterial(array $params = []): ResultSet; 146 + public function materialSearchMaterial(array $params = []);
147 147
148 /** 148 /**
149 * 库存调整(盘点和转移) 149 * 库存调整(盘点和转移)
@@ -151,7 +151,7 @@ interface YuncInterface @@ -151,7 +151,7 @@ interface YuncInterface
151 * @param array $params 151 * @param array $params
152 * @return ResultSet 152 * @return ResultSet
153 */ 153 */
154 - public function yuncAdjustInventory(array $params = []): ResultSet; 154 + public function yuncAdjustInventory(array $params = []);
155 155
156 /** 156 /**
157 * 销退入库取消 157 * 销退入库取消
@@ -159,7 +159,7 @@ interface YuncInterface @@ -159,7 +159,7 @@ interface YuncInterface
159 * @param array $params 159 * @param array $params
160 * @return ResultSet 160 * @return ResultSet
161 */ 161 */
162 - public function yuncCloudCancelInboundOrder(array $params = []): ResultSet; 162 + public function yuncCloudCancelInboundOrder(array $params = []);
163 163
164 /** 164 /**
165 * 给外部WMS调用的推送出库信息回传 165 * 给外部WMS调用的推送出库信息回传
@@ -167,7 +167,7 @@ interface YuncInterface @@ -167,7 +167,7 @@ interface YuncInterface
167 * @param array $params 167 * @param array $params
168 * @return ResultSet 168 * @return ResultSet
169 */ 169 */
170 - public function yuncPushOutboundFeedback(array $params = []): ResultSet; 170 + public function yuncPushOutboundFeedback(array $params = []);
171 171
172 /** 172 /**
173 * 回告销退单状态 173 * 回告销退单状态
@@ -175,7 +175,7 @@ interface YuncInterface @@ -175,7 +175,7 @@ interface YuncInterface
175 * @param array $params 175 * @param array $params
176 * @return ResultSet 176 * @return ResultSet
177 */ 177 */
178 - public function storageNotifySaleReturnStatus(array $params = []): ResultSet; 178 + public function storageNotifySaleReturnStatus(array $params = []);
179 179
180 /** 180 /**
181 * 取消入库单 181 * 取消入库单
@@ -183,7 +183,7 @@ interface YuncInterface @@ -183,7 +183,7 @@ interface YuncInterface
183 * @param array $params 183 * @param array $params
184 * @return ResultSet 184 * @return ResultSet
185 */ 185 */
186 - public function yuncErpInboundCancel(array $params = []): ResultSet; 186 + public function yuncErpInboundCancel(array $params = []);
187 187
188 /** 188 /**
189 * 库存快照回传 189 * 库存快照回传
@@ -191,7 +191,7 @@ interface YuncInterface @@ -191,7 +191,7 @@ interface YuncInterface
191 * @param array $params 191 * @param array $params
192 * @return ResultSet 192 * @return ResultSet
193 */ 193 */
194 - public function yuncSyncInventorySnapshot(array $params = []): ResultSet; 194 + public function yuncSyncInventorySnapshot(array $params = []);
195 195
196 /** 196 /**
197 * 货品数据采集接口 197 * 货品数据采集接口
@@ -199,7 +199,7 @@ interface YuncInterface @@ -199,7 +199,7 @@ interface YuncInterface
199 * @param array $params 199 * @param array $params
200 * @return ResultSet 200 * @return ResultSet
201 */ 201 */
202 - public function yuncSyncCollectInfo(array $params = []): ResultSet; 202 + public function yuncSyncCollectInfo(array $params = []);
203 203
204 /** 204 /**
205 * 即时配轨迹推送接口 205 * 即时配轨迹推送接口
@@ -207,5 +207,5 @@ interface YuncInterface @@ -207,5 +207,5 @@ interface YuncInterface
207 * @param array $params 207 * @param array $params
208 * @return ResultSet 208 * @return ResultSet
209 */ 209 */
210 - public function logisticsIndTrackPush(array $params = []): ResultSet; 210 + public function logisticsIndTrackPush(array $params = []);
211 } 211 }