Changes between Version 71 and Version 72 of pcautofinance1.0_developers/interfaces


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

--

Legend:

Unmodified
Added
Removed
Modified
  • pcautofinance1.0_developers/interfaces

    v71 v72  
    255255||hasDisProd||是否有贴息产品|| 
    256256[[BR]] 
     257 
     258 
     259== 4. 有贴息产品厂商车系接口(WAP) == 
     260'''(pc端开发中)'''[[BR]] 
     261pc接口:'''http:// '''[[BR]] 
     262 
     263**原型** 
     264> [http://trac.pc.com.cn/mobile/pototype/pcauto-finance/wap/WAP_v1.09_20150915/#p=9、贴息促销  点击前往] [[BR]]   
     265**说明** 
     266>按品牌id查询有贴息产品的厂商车系数据,用于品牌厂商车系页 
     267**调用方式** 
     268>get 
     269**请求参数** 
     270||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必需 =||=说明=|| 
     271||bid||品牌id||int||无||是|||| 
     272 
     273**返回数据** 
     274{{{#!java 
     275{ 
     276    "list": [ 
     277        { 
     278            "manufacturer": "上海大众", 
     279            "serials": [ 
     280                { 
     281                    "id": 1421, 
     282                    "name": "朗逸", 
     283                    "hasDisProd": "yes" 
     284                }, 
     285                {} 
     286            ] 
     287        }, 
     288        { 
     289            "manufacturer": "一汽大众" 
     290        } 
     291    ] 
     292} 
     293}}} 
     294**返回参数说明** 
     295||= 参数名 =||= 参数含义 =|| 
     296||list||厂商数组|| 
     297||manufacturer||厂商名称|| 
     298||serials||车系数组|| 
     299||id||车系id|| 
     300||name||车系名|| 
     301||hasDisProd||是否有贴息产品|| 
     302[[BR]]