Changes between Version 74 and Version 75 of pcautofinance1.0_developers/interfaces


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

--

Legend:

Unmodified
Added
Removed
Modified
  • pcautofinance1.0_developers/interfaces

    v74 v75  
    434434||name||车系名|| 
    435435[[BR]] 
     436 
     437 
     438 
     439== 10. 金融产品列表接口(WAP) == 
     440'''(pc端开发中)'''[[BR]] 
     441pc接口:'''http:// '''[[BR]] 
     442 
     443**原型** 
     444> [http://trac.pc.com.cn/mobile/pototype/pcauto-finance/wap/WAP_v1.09_20150915/#p=9_3、金融产品列表页_贴息产品_  点击前往] [[BR]]   
     445**说明** 
     446>按品牌id查询完整的厂商车系数据,用于品牌厂商车系页 
     447**调用方式** 
     448>get 
     449**请求参数** 
     450||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必需 =||=说明=|| 
     451||sord||排序类型||string||default||否||默认(default)、贷款成本(cost)、月供(payment)|| 
     452||feature||产品特点||int||0||否||默认(0)、贴息(待定)|| 
     453||prepay||首付比例||int||30||否||20%、30%、40%、50%、60%|| 
     454||term||期限||int||24||12、18、24、36|||| 
     455||rid||城市id||int||0||是|||| 
     456||serialId||车系id||int||无||否|||| 
     457||modelId||车型id||int||无||否|||| 
     458||pageSize||每页数量||int||6||否||默认值以需求为准|| 
     459||pageNo||页码||int||1||否|||| 
     460 
     461**返回数据** 
     462{{{#!java 
     463{ 
     464    "list": [ 
     465        { 
     466            "manufacturer": "上海大众", 
     467            "serials": [ 
     468                { 
     469                    "id": 1421, 
     470                    "name": "朗逸" 
     471                }, 
     472                {} 
     473            ] 
     474        }, 
     475        { 
     476            "manufacturer": "一汽大众" 
     477        } 
     478    ] 
     479} 
     480}}} 
     481**返回参数说明** 
     482||= 参数名 =||= 参数含义 =|| 
     483||list||厂商数组|| 
     484||manufacturer||厂商名称|| 
     485||serials||车系数组|| 
     486||id||车系id|| 
     487||name||车系名|| 
     488[[BR]]