Authored by qianjun

update

... ... @@ -374,8 +374,8 @@ or
}
```
-------------------------
|属性名称|类型|例子|说明|
|--------|----|----|----|
|属性名称|类型|例子|说明|是否必填|长度限制|
|--------|----|----|----|-----|----|
|id|int|83|数据库记录ID|是|无|
|productSkn|int|500008|产品SKN|是|无|
|brandName|String|SubCrew|品牌名称|是|无|
... ... @@ -441,12 +441,12 @@ or
}
```
-------------------------
|属性名称|类型|例子|说明
|--------|----|----|----|
|type|String|payDeliveryModify|货到付款键类型|
|file|file|下载url为"/common/payDelivery.xlsx"|文件|
|x-user-id|String|"10023"|申请人ID|
|x-user-name|String|"qianjun"|申请人|
|属性名称|类型|例子|说明|是否必填|长度限制|
|--------|----|----|----|-----|----|
|type|String|payDeliveryModify|键类型(货到付款)|是|无|
|file|file|下载url为"/common/payDelivery.xlsx"|文件|是|无|
|x-user-id|String|"10023"|申请人ID|是|无|
|x-user-name|String|"qianjun"|申请人|是|无|
---------------------
### 返回
... ... @@ -491,15 +491,15 @@ or
}
```
-------------------------
|属性名称|类型|例子|说明|
|--------|----|----|----|
|stutas|int|100|货到付款状态(400: 全部 100:待审核 300:驳回 )|
|productSkn|int|500008|产品SKN(可选)|
|brandId|int |133|品牌ID(可选)|
|isPayDelivery|int|0|是否支持货到付款(0、不支持货到付款 1、支持货到付款 ,可选)|
|属性名称|类型|例子|说明|是否必填|长度限制|
|--------|----|----|----|-----|----|
|stutas|int|100|货到付款状态(400: 全部 100:待审核 300:驳回 )|是|无|
|productSkn|int|500008|产品SKN(可选)|是|无|
|brandId|int |133|品牌ID(可选)|是|无|
|isPayDelivery|int|0|是否支持货到付款(0、不支持货到付款 1、支持货到付款 ,可选)|是|无|
---------------------
### 注意:全部列表:传"status":400 ,待审核列表: 传"status":100,驳回列表:传"status":300
### 返回
### 全部列表返回
``` json
{
... ... @@ -507,11 +507,48 @@ or
"data": {
"list": [
{
"applicant": "qianjun",
"brandName": "glamourflage",
"createTime": "2016-04-11 21:22:44",
"productSkn": 50001168,
"rejectReason": "质量不行"
"id": 0,
"isPayDelivery": 0,
"productSkn": 50000855
},
{
"brandName": "glamourflage",
"id": 0,
"isPayDelivery": 1,
"productSkn": 50001168
}
],
"page": 1,
"size": 10,
"total": 1,
"totalPage": 1
},
"message": "操作成功"
}
```
### 待审核列表返回
``` json
{
"code": 200,
"data": {
"list": [
{
"applicant": "wxtest1",
"brandName": "ZETETIC",
"createTime": "2016-04-13 10:20:08",
"id": 95,
"isPayDelivery": 0,
"productSkn": 50000297
},
{
"applicant": "wxtest1",
"brandName": "ZETETIC",
"createTime": "2016-04-13 10:22:30",
"id": 99,
"isPayDelivery": 0,
"productSkn": 50000297
}
],
"page": 1,
... ... @@ -522,4 +559,37 @@ or
"message": "操作成功"
}
```
### 驳回列表返回
``` json
{
"code": 200,
"data": {
"list": [
{
"applicant": "frw",
"brandName": "frw",
"createTime": "2016-04-12 18:34:33",
"id": 73,
"isPayDelivery": 0,
"productSkn": 50000055,
"rejectReason": "dfdfdfdf"
},
{
"applicant": "frw",
"brandName": "frw",
"createTime": "2016-04-12 19:03:45",
"id": 75,
"isPayDelivery": 0,
"productSkn": 50000055,
"rejectReason": "dfdfdfdf"
}
],
"page": 1,
"size": 10,
"total": 1,
"totalPage": 1
},
"message": "操作成功"
}
```
... ...