Changes between Version 67 and Version 68 of pcautofinance1.0_developers/interfaces


Ignore:
Timestamp:
09/16/2015 10:35:33 AM (11 years ago)
Author:
caozhaoyuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pcautofinance1.0_developers/interfaces

    v67 v68  
    143143||cost||贷款成本|| 
    144144[[BR]] 
     145 
     146 
     147== 4. 热门贷款方案接口(WAP) == 
     148'''(pc端开发中)'''[[BR]] 
     149pc接口:'''http:// '''[[BR]] 
     150 
     151**原型** 
     152> [http://trac.pc.com.cn/mobile/pototype/pcauto-finance/wap/WAP_v1.09_20150915/#p=2、汽车金融首页  点击前往] [[BR]]   
     153**说明** 
     154>查询指定城市下的热门贷款方案数据,用于金融首页页面。 
     155**调用方式** 
     156>get 
     157**请求参数** 
     158||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必需 =||=说明=|| 
     159||rid||城市id||int||待定||是||无|| 
     160 
     161**返回数据** 
     162{{{#!java 
     163{ 
     164    "list": [ 
     165        { 
     166            "tab": "推荐金融", 
     167            "orgs": [ 
     168                { 
     169                    "orgId": 1001, 
     170                    "orgName": "招商银行", 
     171                    "icon": "http://logo.png", 
     172                    "prodId": 2001, 
     173                    "prodName": "车易购", 
     174                    "models": [ 
     175                        { 
     176                            "serialId": 5124, 
     177                            "modelId": 63512, 
     178                            "name": "福特福克斯三厢", 
     179                            "payment": 2415, 
     180                            "cost": 7000 
     181                        } 
     182                    ] 
     183                } 
     184            ] 
     185        }, 
     186        { 
     187            "tab": "超低利率", 
     188            "orgs": [ 
     189                {} 
     190            ] 
     191        } 
     192    ] 
     193} 
     194}}} 
     195**返回参数说明** 
     196||= 参数名 =||= 参数含义 =|| 
     197||list||数组,包含4个数据对象|| 
     198||tab||标签名称|| 
     199||data||标签下的车型数据数组|| 
     200||serialid||车系id|| 
     201||modelid||车型id|| 
     202||name||车系名|| 
     203||payment||月供|| 
     204||cost||贷款成本|| 
     205[[BR]]