Showing
1 changed file
with
18 additions
and
6 deletions
1 | 一、根据父品类Id 查询 其子品类列表 | 1 | 一、根据父品类Id 查询 其子品类列表 |
2 | - http://127.0.0.1:8083/yohobuy-platform-web/product/queryProductSortList | 2 | + /product/queryProductSortList |
3 | 3 | ||
4 | POST请求 请求参数 使用raw模式 | 4 | POST请求 请求参数 使用raw模式 |
5 | 请求 {"param": 1 } | 5 | 请求 {"param": 1 } |
@@ -229,7 +229,7 @@ POST请求 请求参数 使用raw模式 | @@ -229,7 +229,7 @@ POST请求 请求参数 使用raw模式 | ||
229 | 229 | ||
230 | 230 | ||
231 | 二、新增品类 | 231 | 二、新增品类 |
232 | -http://127.0.0.1:8083/yohobuy-platform-web/product/addProductSort | 232 | +/product/addProductSort |
233 | 233 | ||
234 | 234 | ||
235 | POST请求 请求参数 使用raw模式 | 235 | POST请求 请求参数 使用raw模式 |
@@ -290,9 +290,11 @@ http://127.0.0.1:8083/yohobuy-platform-web/product/getProductSort | @@ -290,9 +290,11 @@ http://127.0.0.1:8083/yohobuy-platform-web/product/getProductSort | ||
290 | } | 290 | } |
291 | 291 | ||
292 | 五、品类的开启和关闭 | 292 | 五、品类的开启和关闭 |
293 | -http://127.0.0.1:8083/yohobuy-platform-web/product/updateProductSort | ||
294 | 293 | ||
295 | -请求参数 {"id" : 1, "status" : 1} | 294 | +开启 |
295 | +/product/publishProductSort | ||
296 | + | ||
297 | +请求参数 {"id" : 1} | ||
296 | 响应 :{ | 298 | 响应 :{ |
297 | "code": 200, | 299 | "code": 200, |
298 | "data": [], | 300 | "data": [], |
@@ -300,13 +302,23 @@ http://127.0.0.1:8083/yohobuy-platform-web/product/updateProductSort | @@ -300,13 +302,23 @@ http://127.0.0.1:8083/yohobuy-platform-web/product/updateProductSort | ||
300 | "message": "Product Sort update success." | 302 | "message": "Product Sort update success." |
301 | } | 303 | } |
302 | 304 | ||
305 | +关闭 | ||
306 | + | ||
307 | +/product/closeProductSort | ||
308 | + | ||
309 | +请求参数 {"id" : 1} | ||
310 | +响应 :{ | ||
311 | + "code": 200, | ||
312 | + "data": [], | ||
313 | + "md5": "d751713988987e9331980363e24189ce", | ||
314 | + "message": "Product Sort update success." | ||
315 | +} | ||
303 | 316 | ||
304 | -备注 :status 代表目标状态,即接口正常响应后的数据库状态 | ||
305 | 317 | ||
306 | 318 | ||
307 | 319 | ||
308 | 六、查询所有的分类列表 | 320 | 六、查询所有的分类列表 |
309 | - http://127.0.0.1:8083/yohobuy-platform-web/product/queryAllProductSortList | 321 | + /product/queryAllProductSortList |
310 | 322 | ||
311 | POST请求 请求参数 使用raw模式 | 323 | POST请求 请求参数 使用raw模式 |
312 | 324 |
-
Please register or login to post a comment