Showing
1 changed file
with
44 additions
and
0 deletions
@@ -383,3 +383,47 @@ shopRelation的json格式为: | @@ -383,3 +383,47 @@ shopRelation的json格式为: | ||
383 | } | 383 | } |
384 | 384 | ||
385 | ``` | 385 | ``` |
386 | +## 查询所有已经审核通过的店铺 | ||
387 | + | ||
388 | +> 接口名: `/ShopsRest/selectCheckPassShopsByName` | ||
389 | + | ||
390 | +### 入参 | ||
391 | +```json | ||
392 | +{ | ||
393 | + "idName":"速写CROQUIS" | ||
394 | +} | ||
395 | +or | ||
396 | +{ | ||
397 | + | ||
398 | +} | ||
399 | + | ||
400 | +``` | ||
401 | +### 注意 入参为`{}`,查询所有店铺 | ||
402 | +------------------------- | ||
403 | +|属性名称|类型|例子|说明| | ||
404 | +|--------|----|----|----| | ||
405 | +|idName|String|速写CROQUIS|店铺名称| | ||
406 | +----------------------------- | ||
407 | + | ||
408 | +### 返回 | ||
409 | + | ||
410 | +```json | ||
411 | + | ||
412 | +{ | ||
413 | + "code": 200, | ||
414 | + "data": [ | ||
415 | + { | ||
416 | + "checkStatus": 0, | ||
417 | + "createTime": "", | ||
418 | + "id": 22, | ||
419 | + "shopNature": 0, | ||
420 | + "shopsType": 0, | ||
421 | + "status": 0, | ||
422 | + "text": "速写CROQUIS", | ||
423 | + "updateTime": "" | ||
424 | + } | ||
425 | + ], | ||
426 | + "message": "操作成功" | ||
427 | +} | ||
428 | + | ||
429 | +``` |
-
Please register or login to post a comment