Authored by lingmin

Update shops_decorator.md

... ... @@ -9,6 +9,7 @@
{
"shopsId":1,
"isBlk":1,
"platform": "APP",
"templateName": "BASE",
"resources": [
... ... @@ -65,6 +66,7 @@
|platform |否 |string |APP |平台名称 |
|templateName|否 |string |BASE |模板名称 |
|resources |否 |json | |资源 |
|isBlk |是 |int |1 |是否BLK,0-否,1-是|
#### 资源描述-店铺头部横幅
... ... @@ -123,7 +125,8 @@
"shopsId":1,
"checkStatus": 100,
"supplierId": 1,
"brandId": 1
"brandId": 1,
"isBlk":0
}
```
... ... @@ -135,6 +138,7 @@
|checkStatus |否 |int |100 |审核状态 |
|supplierId |否 |int |1 |供应商编号 |
|brandId |否 |int |1 |品牌编号 |
|isBlk |否 |int |1 |是否BLK,0-否,1-是|
### 返回
... ... @@ -155,6 +159,7 @@
"shopsName":"T.U.K",
"checkStatus":100,
"createTime":1454551897,
"isBlk": 0,
"updateTime":1454551897,
"status":1,
"brands":[{
... ... @@ -187,7 +192,7 @@
|brandName |否 |string |T.U.K |品牌名称 |
|brandNameCn |否 |string | |品牌中文名称 |
|brandNameEn |否 |string |T.U.K |品牌英文名称 |
|isBlk |否 |int |1 |是否BLK装修 |
## 查询店铺装修详细信息
> POST `/ShopsDecoratorRest/findShopsDecoratorDetail`
... ... @@ -208,6 +213,7 @@
|id |是 |int |1 |页数 |
|platform |否 |string |APP |平台名称(默认:APP) |
|templateName|否 |string |BASE |模板名称(默认:启用的模板)|
|isBlk |是 |int |1 |是否BLK装修,0-否,1-是 |
### 返回
... ... @@ -220,6 +226,7 @@
"id":1,
"platform":"APP",
"templateName":"BASE",
"isBlk": 0,
"resources":[]
}
}
... ... @@ -230,4 +237,5 @@
|id |是 |int |1 |店铺装修编号 |
|platform |是 |string |APP |平台名称 |
|templateName|是 |string |BASE |模板名称 |
|resources |是 |json | |资源 |
\ No newline at end of file
|resources |是 |json | |资源 |
|isBlk |是 |int |1 |是否BLK装修,0-否,1-是 |
\ No newline at end of file
... ...