获取产品主页信息
[/loanpre/product/getProductHomePage][GET]

参数
request
uid //String 用户id
unionId //String 用户unionId
返回值
{ "status" : 200,
"msg":"成功",
"data":{
"uid": //String 用户id
"fullName": //String 用户名
"avatarUrl": //String 用户头像地址
"telephone": //String 登陆手机号
"idCardNo": //String 身份证号
"toReceiveAmount": //Double 用户待收总额
"toRepayAmount": //Double 用户待还总额
"borrowAmount": //Double 用户借入总额
"guaranteeAmount": //Double 用户担保总额
"currentGuaranteeAmount": // 用户当前正在担保金额
"productList":[ { //List 有效的产品
"id": //String 产品id
"originalId": //String 产品显示id
"minAmount": //Integer 贷款下限
"maxAmount": //Integer 贷款上限
"borrowDays": //Integer 贷款天数
"repayType": //Byte 还款方式0.到期还本付息1.等额本息
"minTm": //Byte 借款时间下限
"maxTm": //Byte 借款时间上限
"minTimeUnit": //Byte 借款下限时间单位0.日1.月2.年
"maxTimeUnit": //Byte 借款上限时间单位0.日1.月2.年
"interestRate": //Byte 年化利率,范围为0~24%,这里以1%为单位,存储0~24之间的整数
"minServiceFee": //Byte 最低服务费
"serviceFeeRate": //Byte 服务费率(单位1%)
"applyCount": //Long 申请次数
"passRate": //Byte 通过率(%)0~100
"dealHour": //Float 平均处理时间(小时)
"lastestDealTime": //Integer 最近成交时间(-1:暂无;0:当天;其他:天数)
"createDate": //Integer 创建时间
}],
"self":0, //Integer 是否是自己查看0:否;1是
"invalidProductList":[ //List 无效的产品
{
//字段同productList
}
]
"offlineProductList":[
{
//字段同productList
}
]
}}