Update shopCategory.md
Showing
1 changed file
with
80 additions
and
0 deletions
@@ -150,3 +150,83 @@ | @@ -150,3 +150,83 @@ | ||
150 | } | 150 | } |
151 | 151 | ||
152 | ``` | 152 | ``` |
153 | + | ||
154 | + | ||
155 | +# 获取店铺下该类目所选商品接口 | ||
156 | + | ||
157 | +> 接口名: `/ShopsSalesCategoryRest/selectCheckedProduct` | ||
158 | + | ||
159 | +### 方法 | ||
160 | + | ||
161 | +> POST JSONRAW | ||
162 | + | ||
163 | +### 入参 | ||
164 | + | ||
165 | +------------------------- | ||
166 | +|属性名称|类型|例子|说明|是否必填| | ||
167 | +|--------|----|----|---|----| | ||
168 | +|shopsId|Number|7564|店铺ID|是| | ||
169 | +|categoryId|Number|20|类目ID|是| | ||
170 | +|productSKN|Number|50000055|商品SKN|否| | ||
171 | +|factoryCode|String|D1XDSL250X1100|类目ID|否| | ||
172 | + | ||
173 | + | ||
174 | + | ||
175 | +### 错误编码 | ||
176 | + | ||
177 | +------------------------- | ||
178 | +|错误码code|消息|说明| | ||
179 | +|--------|----|----| | ||
180 | +|200| 删除店铺类目成功!| | | ||
181 | +|500| 操作失败!| | | ||
182 | + | ||
183 | +### 返回 | ||
184 | + | ||
185 | +``` json | ||
186 | +{ | ||
187 | + "code": 200, | ||
188 | + "data": { | ||
189 | + "list": [ | ||
190 | + { | ||
191 | + "checked": true, | ||
192 | + "factoryCode": "D1XDSL250X1100", | ||
193 | + "productName": "新的商品名称111222211", | ||
194 | + "productSKN": 50000055, | ||
195 | + "productSort": "创意生活-文具-本子", | ||
196 | + "saleCategory": [ | ||
197 | + "更新" | ||
198 | + ], | ||
199 | + "salePrice": 200 | ||
200 | + }, | ||
201 | + { | ||
202 | + "checked": true, | ||
203 | + "factoryCode": "", | ||
204 | + "productName": "新的商品名称", | ||
205 | + "productSKN": 50000056, | ||
206 | + "productSort": "服配-配饰-挂饰", | ||
207 | + "saleCategory": [ | ||
208 | + "更新" | ||
209 | + ], | ||
210 | + "salePrice": 11 | ||
211 | + }, | ||
212 | + { | ||
213 | + "checked": true, | ||
214 | + "factoryCode": "", | ||
215 | + "productName": "K*facto.2y拉链肩套头衫", | ||
216 | + "productSKN": 50000057, | ||
217 | + "productSort": "上衣-T恤-T恤", | ||
218 | + "saleCategory": [ | ||
219 | + "更新" | ||
220 | + ], | ||
221 | + "salePrice": 89 | ||
222 | + } | ||
223 | + ], | ||
224 | + "page": 1, | ||
225 | + "size": 20, | ||
226 | + "total": 3, | ||
227 | + "totalPage": 1 | ||
228 | + }, | ||
229 | + "message": "获取店铺下类目已关联商品列表成功!" | ||
230 | +} | ||
231 | + | ||
232 | +``` |
-
Please register or login to post a comment