Changes between Version 81 and Version 82 of pcautofinance1.0_developers/interfaces


Ignore:
Timestamp:
09/16/2015 02:28:11 PM (11 years ago)
Author:
caozhaoyuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pcautofinance1.0_developers/interfaces

    v81 v82  
    509509||pageSize||每页数量|| 
    510510[[BR]] 
     511 
     512 
     513== 11. 金融列表/详情页经销商接口(WAP) == 
     514'''(pc端开发中)'''[[BR]] 
     515pc接口:'''http:// '''[[BR]] 
     516 
     517**原型** 
     518> [http://trac.pc.com.cn/mobile/pototype/pcauto-finance/wap/WAP_v1.09_20150915/#p=3_3_3、金融产品列表页没有产品进行询价  点击前往] [[BR]]   
     519**说明** 
     520>提供经销商列表数据,用于金融产品列表/详情页 
     521**调用方式** 
     522>get 
     523**请求参数** 
     524||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必需 =||=说明=|| 
     525||rid||城市id||int||无||是||待定|| 
     526||serialId||车系id||int||无||是|||| 
     527||modelId||车型id||int||无||否|||| 
     528 
     529**返回数据** 
     530{{{#!java 
     531{ 
     532    "list": [ 
     533        { 
     534            "manufacturer": "上海大众", 
     535            "serials": [ 
     536                { 
     537                    "id": 1421, 
     538                    "name": "朗逸" 
     539                }, 
     540                {} 
     541            ] 
     542        }, 
     543        { 
     544            "manufacturer": "一汽大众" 
     545        } 
     546    ] 
     547} 
     548}}} 
     549**返回参数说明** 
     550||= 参数名 =||= 参数含义 =|| 
     551||list||厂商数组|| 
     552||manufacturer||厂商名称|| 
     553||serials||车系数组|| 
     554||id||车系id|| 
     555||name||车系名|| 
     556[[BR]]