Changes between Version 88 and Version 89 of pcautofinance1.0_developers/interfaces


Ignore:
Timestamp:
09/16/2015 04:12:58 PM (11 years ago)
Author:
caozhaoyuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pcautofinance1.0_developers/interfaces

    v88 v89  
    707707||introduce||详细介绍json对象|| 
    708708[[BR]] 
     709 
     710 
     711 
     712== 15. 按预算选车型接口(WAP) == 
     713'''(pc端开发中)'''[[BR]] 
     714pc接口:'''http:// '''[[BR]] 
     715 
     716**原型** 
     717> [http://trac.pc.com.cn/mobile/pototype/pcauto-finance/wap/WAP_v1.09_20150915/#p=4、按预算选车  点击前往] [[BR]]   
     718**说明** 
     719>按条件查询车型列表数据 
     720**调用方式** 
     721>get 
     722**请求参数** 
     723||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必需 =||=说明=|| 
     724||productId||产品id||int||无||是|||| 
     725||rid||城市id||int||无||是|||| 
     726||modelId||车型id||int||无||是|||| 
     727 
     728**返回数据** 
     729{{{#!java 
     730{ 
     731    "serialId": 5124, 
     732    "modelId": 63512, 
     733    "name": "福特福克斯三厢", 
     734    "payment": "30-40", 
     735    "cost": 0.7, 
     736    "price": 9.7, 
     737    "icon": "http://logo.png", 
     738    "orgId": 1001, 
     739    "orgName": "招商银行", 
     740    "productId": 1001, 
     741    "productName": "平安直通薪金贷", 
     742    "feature": [0,1,2], 
     743    "prepay": [30,40], 
     744    "term": [12,18,24], 
     745    "requirement": { 
     746        "age": "25-55周岁", 
     747        "target": "公积金缴存人群" 
     748    }, 
     749    "introduce": { 
     750        "downpayment": "30", 
     751        "advantage": "····" 
     752    } 
     753} 
     754}}} 
     755**返回参数说明** 
     756||= 参数名 =||= 参数含义 =|| 
     757||serialid||车系id|| 
     758||modelid||车型id|| 
     759||name||车型名|| 
     760||payment||月供|| 
     761||cost||贷款成本|| 
     762||price||经销商平均报价|| 
     763||icon||车型图片url|| 
     764||ordId||机构id|| 
     765||orgName||机构名|| 
     766||productId||产品id|| 
     767||productName||产品名称|| 
     768||feature||特点数组,包含产品拥有的特点,如贴息|| 
     769||prepay||可选首付数组|| 
     770||term||可选期限数组|| 
     771||requirement||申请条件json对象|| 
     772||introduce||详细介绍json对象|| 
     773[[BR]]