Showing
1 changed file
with
122 additions
and
1 deletions
@@ -230,4 +230,125 @@ | @@ -230,4 +230,125 @@ | ||
230 | |id |是 |int |1 |店铺装修编号 | | 230 | |id |是 |int |1 |店铺装修编号 | |
231 | |platform |是 |string |APP |平台名称 | | 231 | |platform |是 |string |APP |平台名称 | |
232 | |templateName|是 |string |BASE |模板名称 | | 232 | |templateName|是 |string |BASE |模板名称 | |
233 | -|resources |是 |json | |资源 | | ||
233 | +|resources |是 |json | |资源 | | ||
234 | + | ||
235 | +## 查询店铺装修待审核信息 | ||
236 | +> POST `/ShopsDecoratorRest/findAuditShopsDecorator` | ||
237 | + | ||
238 | +### 入参 | ||
239 | + | ||
240 | +```json | ||
241 | + | ||
242 | +{ | ||
243 | +"shopsId":21, | ||
244 | +"brandId":0, | ||
245 | +"checkStatus":200, | ||
246 | +} | ||
247 | +``` | ||
248 | + | ||
249 | +|参数名 |必填 |类型 |示例值 |描述 | | ||
250 | +|------ |---- |---- |------ |---- | | ||
251 | +|shopsId |是 |int |21 |店铺编号 | | ||
252 | +|brandId |是 |int |0 |品牌编号 | | ||
253 | +|checkStatus |否 |int |200 |店铺装修审核状态 | | ||
254 | + | ||
255 | +### 返回 | ||
256 | + | ||
257 | +```json | ||
258 | + | ||
259 | + | ||
260 | + | ||
261 | + { | ||
262 | + "code": 200, | ||
263 | + "data": | ||
264 | + { | ||
265 | + "list": | ||
266 | + [ | ||
267 | + { | ||
268 | + "brands": | ||
269 | + [ | ||
270 | + { | ||
271 | + "brandDomain": "qianjun", | ||
272 | + "brandName": "钱军1", | ||
273 | + "brandNameCn": "", | ||
274 | + "brandNameEn": "qianjun", | ||
275 | + "id": 1470, | ||
276 | + "status": 1 | ||
277 | + } | ||
278 | + ], | ||
279 | + "checkStatus": 200, | ||
280 | + "createTime": 1445909754, | ||
281 | + "id": 1, | ||
282 | + "shopsId": 21, | ||
283 | + "shopsName": "jnby by JNBY", | ||
284 | + "status": 0, | ||
285 | + "updateTime": 1456128116 | ||
286 | + }, | ||
287 | + { | ||
288 | + "brands": | ||
289 | + [ | ||
290 | + { | ||
291 | + "brandDomain": "qianjun", | ||
292 | + "brandName": "钱军1", | ||
293 | + "brandNameCn": "", | ||
294 | + "brandNameEn": "qianjun", | ||
295 | + "id": 1470, | ||
296 | + "status": 1 | ||
297 | + } | ||
298 | + ], | ||
299 | + "checkStatus": 100, | ||
300 | + "createTime": 1445909754, | ||
301 | + "id": 2, | ||
302 | + "shopsId": 21, | ||
303 | + "shopsName": "jnby by JNBY", | ||
304 | + "status": 0, | ||
305 | + "updateTime": 1456128116 | ||
306 | + }, | ||
307 | + { | ||
308 | + "brands": | ||
309 | + [ | ||
310 | + { | ||
311 | + "brandDomain": "qianjun", | ||
312 | + "brandName": "钱军1", | ||
313 | + "brandNameCn": "", | ||
314 | + "brandNameEn": "qianjun", | ||
315 | + "id": 1470, | ||
316 | + "status": 1 | ||
317 | + } | ||
318 | + ], | ||
319 | + "checkStatus": 200, | ||
320 | + "createTime": 1445909754, | ||
321 | + "id": 3, | ||
322 | + "shopsId": 21, | ||
323 | + "shopsName": "jnby by JNBY", | ||
324 | + "status": 0, | ||
325 | + "updateTime": 1456128116 | ||
326 | + } | ||
327 | + ], | ||
328 | + "page": 1, | ||
329 | + "size": 10, | ||
330 | + "total": 3, | ||
331 | + "totalPage": 1 | ||
332 | + }, | ||
333 | + "message": "操作成功" | ||
334 | + } | ||
335 | + | ||
336 | + | ||
337 | +``` | ||
338 | + | ||
339 | +|参数名 |必填 |类型 |示例值 |描述 | | ||
340 | +|------ |---- |---- |------ |---- | | ||
341 | +|id |是 |int |3 |店铺装修编号 | | ||
342 | +|shopsId |是 |int |21 |shopsId | | ||
343 | +|shopsName |是 |string |jnby by JNBY |店铺名称 | | ||
344 | +|status |是 |int |0 |店铺装修状态 | | ||
345 | +|checkStatus |是 |int |200 |店铺装修审核状态 | | ||
346 | +|createTime |是 |int |1445909754 |店铺装修创建时间 | | ||
347 | +|updateTime |是 |int |1456128116 |店铺装修更新时间 | | ||
348 | +|brands |否 |json | |品牌信息 | | ||
349 | +|id |否 |int |517 |品牌编号 | | ||
350 | +|brandName |否 |string |T.U.K |品牌名称 | | ||
351 | +|brandNameCn |否 |string | |品牌中文名称 | | ||
352 | +|brandNameEn |否 |string |T.U.K |品牌英文名称 | | ||
353 | +|status |否 |int |1 |品牌开启状态 | | ||
354 | +|brandDomain |否 |string |T.U.K |品牌主域名 | |
-
Please register or login to post a comment