Changes between Version 84 and Version 85 of pcautofinance1.0_developers/interfaces


Ignore:
Timestamp:
09/16/2015 03:19:15 PM (11 years ago)
Author:
caozhaoyuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pcautofinance1.0_developers/interfaces

    v84 v85  
    588588||msg||描述信息|| 
    589589[[BR]] 
     590 
     591 
     592 
     593== 13. 车型列表接口(WAP) == 
     594'''(pc端开发中)'''[[BR]] 
     595pc接口:'''http:// '''[[BR]] 
     596 
     597**原型** 
     598> [http://trac.pc.com.cn/mobile/pototype/pcauto-finance/wap/WAP_v1.09_20150915/#p=选择车型  点击前往] [[BR]]   
     599**说明** 
     600>查询车系下的车型数据 
     601**调用方式** 
     602>get 
     603**请求参数** 
     604||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必需 =||=说明=|| 
     605||serialId||车系id||int||无||是|||| 
     606 
     607**返回数据** 
     608{{{#!java 
     609{ 
     610    "name": "朗逸", 
     611    "list": [ 
     612        { 
     613            "year": "2015款", 
     614            "data": [ 
     615                { 
     616                    "id": "32059", 
     617                    "title": "2015款 30 TFSI 标准型", 
     618                    "price": "24.98" 
     619                }, 
     620                { 
     621                    "id": "32060", 
     622                    "title": "1.6L标准型", 
     623                    "price": "24.98" 
     624                } 
     625            ] 
     626        }, 
     627        { 
     628            "year": "2014款", 
     629            "data": [] 
     630        } 
     631    ] 
     632} 
     633}}} 
     634**返回参数说明** 
     635||= 参数名 =||= 参数含义 =|| 
     636||code||返回码:成功(0)、失败(1)|| 
     637||msg||描述信息|| 
     638[[BR]]