Skip to content

Commit

Permalink
Merge pull request #43 from lichaoyue/dev
Browse files Browse the repository at this point in the history
借款人亲朋信息文档修改
  • Loading branch information
dannyge authored Jan 30, 2018
2 parents ff62ca1 + 63628d5 commit b73fc2b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions 2.1/35_cif_cs_rel_family_create.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# 借款人亲朋信息
## 描述
创建借款方为个人,关联关系为父母、子女、兄弟姐妹、朋友的关联人信息
创建借款方为个人,关联关系为父母、子女、兄弟姐妹、朋友、同事的关联人信息

## 规则
与借款人关联关系为父母时:最多只能添加两个关联人信息
与借款人关联关系为子女时:可以添加一个或多个
与借款人关联关系为兄弟姐妹时:可以添加一个或多个
与借款人关联关系为朋友时:可以添加一个或多个
与借款人关联关系为同事时:可以添加一个或多个

## API代码
loan\_app:cif\_cs\_rel_family:create
Expand All @@ -19,13 +20,14 @@ loan\_app:cif\_cs\_rel_family:create
| 名称 | 类型 | 是否必须 | 最大长度 | 描述 | 示例值 |
| --- | --- | --- | --- | --- | --- |
| appId | String || 50 |申请ID(融资申请创建API返回的结果) | 0092728480d24f |
| mtCifRelCd | String || 20 |与借款方的关联关系 | II002-父母;II003-子女;II004-兄弟姐妹;II006-朋友 |
| mtCifRelCd | String || 20 |与借款方的关联关系 | II002-父母;II003-子女;II004-兄弟姐妹;II006-朋友;II007:同事 |
| nm | String || 80 | 关联人姓名(与身份证上相同) | 张三 |
| mtGenderCd | String || 20 | 性别 | F:男;M:女 |
| idNo | String || 18 | 身份证号码 | |
| mtGenderCd | String || 20 | 性别 | |
| mtMaritalStsCd | String || 20 | 婚姻情况 | |
| dtRegistered | Date || | 出生日期 | |
| mobileNo | String || 11 | 手机号 | |
| mtIncSourceCd | String || 6 | 收入来源 | ISC001:工资、年薪;ISC002:退休、养老金;ISC003:住房公积金单位缴存部分;ISC004:住房补贴;ISC005:生产、经营、承包、承租所得; ISC005:生产、经营、承包、承租所得;ISC006:劳务报酬;ISC007:股息红利及利息所得;ISC008:其他所得;|


## 响应参数
Expand All @@ -39,7 +41,7 @@ loan\_app:cif\_cs\_rel_family:create
| appId未找到 | 400 | 请输入正确的appId |

## 示例
### 请求示例(借款方为个人,关联关系为父母、子女、兄弟姐妹、朋友)
### 请求示例(借款方为个人,关联关系为父母、子女、兄弟姐妹、朋友、同事

```javascript
{
Expand All @@ -49,7 +51,8 @@ loan\_app:cif\_cs\_rel_family:create
"mobileNo": "18888888888",
"mtCifRelCd": "II002",
"mtGenderCd": "M",
"mtMaritalStsCd": "02",
"mtMaritalStsCd": "02",
"mtIncSourceCd": "ISC001",
"nm": "关联人父亲"
}
```
Expand Down

0 comments on commit b73fc2b

Please sign in to comment.