## 保存
#### 接口URL
> {{baseUrl}}/cms/order/bill_delivery/save
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"platform": "ios",
"minVersion": "0.0.2",
"currentVersion": "1.0.0",
"description": "测试2",
"appUrl": "http://www.postman.com/"
}
```
## 删除
#### 接口URL
> {{baseUrl}}/cms/order/bill_delivery/delete
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"ids":[3]
}
```
## 明细
#### 接口URL
> {{baseUrl}}/cms/order/bill_delivery/get
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"id": 1
}
```
## 列表
#### 接口URL
> {{baseUrl}}/cms/order/bill_delivery/list
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"searchKey": {},
"offset": 0,
"limit": 10
}
```