## 凍結資金、解凍資金
注意事項:
1. 一維數組
2. 充值的凍結資金,解凍直接進入可贖回資金
3. 同一筆訂單資金凍結后的解凍操作,傳過來的訂單號必須相同,否則無法進行資金追溯,解凍資金將直接進入可贖回資金
4. 認籌訂單號可重復,外部訂單號不可重復
5. 認籌訂單金額一旦變更,將不可操作
**請求方式**:POST
**請求地址**:
1. 單條:`index/index/freeze_un`(一維數組)
2. 批量:`index/index/unfreezes`(二維數組)
**參數說明:**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| phone | Integer | yes | 手機號 |
| amount | Integer | yes | 扣款金額 |
| invest_order | String | yes | 認籌訂單號 |
| out_order | String | yes | 外部訂單號 |
| panterid | Integer | yes | 商戶ID |
| storeid | Integer | yes | 門店ID |
| source | Integer | yes | 05 房掌柜 訂單來源 |
| type | String | yes | 凍結:freeze 解凍:unfreeze |
| description | Integer | yes | 說明 |
| status | Integer | yes | 1 否 2 是 進行資金追溯 該狀態凍結無效 新增(18.11.15) |
| sign | String | yes | 秘鑰 |
**請求包結構體:**
~~~
{
"phone":"15890151342",
"amount":"50",
"invest_order ": "201809031743541469974910151",
"out_order ": "19307200619833",
"panterid":"00000227",
"storeid":"88888888",
"source":"05",
"type":"freeze",
"description":"房掌柜充值",
"status":"1",
"sign": "FFE3B2F7F6BABFB3ECC224A62B526F46"
}
~~~