## 转账(个人)
注意事项:
1. 一维数组
2. 转账遵循转账人资金类型等于被转账人资金类型规则
3. 认筹订单号可重复,外部订单号不可重复
4. 认筹订单金额一旦变更,将不可转账
**请求方式**:POST
**请求地址**:`index/index/transfer`
**参数说明:**
| 参数 | 参数类型 | 必须 | 说明|
| ----------- | ------------------------------ | ------------ | --- |
| linktel | Integer | yes | 转账人持有手机号 |
| moneytype | Integer | yes | 01 自有资金 02 备付金 |
| name | String | yes | 被转账人用户姓名 |
| personid | Integer | yes | 被转账人身份证号 |
| residaddress | String | yes | 被转账人身份证地址 |
| invest_order | String | yes | 认筹订单号 |
| out_order | String | yes | 外部订单号 |
| type | Integer | yes | 05 房掌柜 账户类型 |
| phone | Integer | yes | 手机号 |
| amount | Integer | yes | 转账金额 |
| amounttype | Integer | yes | 资金类型 01 冻结 02 赎回 03 消费 04 备付金 |
| paytype | Integer | yes | 支付类型(现金 01、刷卡 02、支付宝 03 、微信 04) |
| source | Integer | yes | 05 房掌柜 订单来源 |
| description | Integer | yes | 说明 |
| sign | String | yes | 秘钥 |
**请求包结构体:**
~~~
{
"linktel ": "15890151988",
"moneytype ": "01",
"name": "哈哈",
"personid": "411522199912012435",
"residaddress": "天下收藏",
"invest_order ": "19307200619833",
"out_order ": "201809031743541469974910151",
"type":"05",
"phone":"15890151342",
"amount":"50",
"amounttype":"04",
"paytype":"02",
"source":"05",
"description":"房掌柜充值",
"sign": "FFE3B2F7F6BABFB3ECC224A62B526F46"
}
~~~