...
|
...
|
@@ -230,4 +230,125 @@ |
|
|
|id |是 |int |1 |店铺装修编号 |
|
|
|
|platform |是 |string |APP |平台名称 |
|
|
|
|templateName|是 |string |BASE |模板名称 |
|
|
|
|resources |是 |json | |资源 | |
|
|
\ No newline at end of file |
|
|
|resources |是 |json | |资源 |
|
|
|
|
|
|
## 查询店铺装修待审核信息
|
|
|
> POST `/ShopsDecoratorRest/findAuditShopsDecorator`
|
|
|
|
|
|
### 入参
|
|
|
|
|
|
```json
|
|
|
|
|
|
{
|
|
|
"shopsId":21,
|
|
|
"brandId":0,
|
|
|
"checkStatus":200,
|
|
|
}
|
|
|
```
|
|
|
|
|
|
|参数名 |必填 |类型 |示例值 |描述 |
|
|
|
|------ |---- |---- |------ |---- |
|
|
|
|shopsId |是 |int |21 |店铺编号 |
|
|
|
|brandId |是 |int |0 |品牌编号 |
|
|
|
|checkStatus |否 |int |200 |店铺装修审核状态 |
|
|
|
|
|
|
### 返回
|
|
|
|
|
|
```json
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
"code": 200,
|
|
|
"data":
|
|
|
{
|
|
|
"list":
|
|
|
[
|
|
|
{
|
|
|
"brands":
|
|
|
[
|
|
|
{
|
|
|
"brandDomain": "qianjun",
|
|
|
"brandName": "钱军1",
|
|
|
"brandNameCn": "",
|
|
|
"brandNameEn": "qianjun",
|
|
|
"id": 1470,
|
|
|
"status": 1
|
|
|
}
|
|
|
],
|
|
|
"checkStatus": 200,
|
|
|
"createTime": 1445909754,
|
|
|
"id": 1,
|
|
|
"shopsId": 21,
|
|
|
"shopsName": "jnby by JNBY",
|
|
|
"status": 0,
|
|
|
"updateTime": 1456128116
|
|
|
},
|
|
|
{
|
|
|
"brands":
|
|
|
[
|
|
|
{
|
|
|
"brandDomain": "qianjun",
|
|
|
"brandName": "钱军1",
|
|
|
"brandNameCn": "",
|
|
|
"brandNameEn": "qianjun",
|
|
|
"id": 1470,
|
|
|
"status": 1
|
|
|
}
|
|
|
],
|
|
|
"checkStatus": 100,
|
|
|
"createTime": 1445909754,
|
|
|
"id": 2,
|
|
|
"shopsId": 21,
|
|
|
"shopsName": "jnby by JNBY",
|
|
|
"status": 0,
|
|
|
"updateTime": 1456128116
|
|
|
},
|
|
|
{
|
|
|
"brands":
|
|
|
[
|
|
|
{
|
|
|
"brandDomain": "qianjun",
|
|
|
"brandName": "钱军1",
|
|
|
"brandNameCn": "",
|
|
|
"brandNameEn": "qianjun",
|
|
|
"id": 1470,
|
|
|
"status": 1
|
|
|
}
|
|
|
],
|
|
|
"checkStatus": 200,
|
|
|
"createTime": 1445909754,
|
|
|
"id": 3,
|
|
|
"shopsId": 21,
|
|
|
"shopsName": "jnby by JNBY",
|
|
|
"status": 0,
|
|
|
"updateTime": 1456128116
|
|
|
}
|
|
|
],
|
|
|
"page": 1,
|
|
|
"size": 10,
|
|
|
"total": 3,
|
|
|
"totalPage": 1
|
|
|
},
|
|
|
"message": "操作成功"
|
|
|
}
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|参数名 |必填 |类型 |示例值 |描述 |
|
|
|
|------ |---- |---- |------ |---- |
|
|
|
|id |是 |int |3 |店铺装修编号 |
|
|
|
|shopsId |是 |int |21 |shopsId |
|
|
|
|shopsName |是 |string |jnby by JNBY |店铺名称 |
|
|
|
|status |是 |int |0 |店铺装修状态 |
|
|
|
|checkStatus |是 |int |200 |店铺装修审核状态 |
|
|
|
|createTime |是 |int |1445909754 |店铺装修创建时间 |
|
|
|
|updateTime |是 |int |1456128116 |店铺装修更新时间 |
|
|
|
|brands |否 |json | |品牌信息 |
|
|
|
|id |否 |int |517 |品牌编号 |
|
|
|
|brandName |否 |string |T.U.K |品牌名称 |
|
|
|
|brandNameCn |否 |string | |品牌中文名称 |
|
|
|
|brandNameEn |否 |string |T.U.K |品牌英文名称 |
|
|
|
|status |否 |int |1 |品牌开启状态 |
|
|
|
|brandDomain |否 |string |T.U.K |品牌主域名 | |
|
|
\ No newline at end of file |
...
|
...
|
|