Changes between Version 6 and Version 7 of appapi/4.5


Ignore:
Timestamp:
10/16/2015 03:02:05 PM (11 years ago)
Author:
fangxirui
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • appapi/4.5

    v6 v7  
    3535 
    3636}}} 
     37 
     38=== 2. 用户管理相关 
     39 
     40==== 2.1. 用户爱车接口 ==== 
     41 
     42{{{ 
     43接口:/appapi/4.5/user/carInfo.do [GET] 
     44 
     45请求参数: 
     46    userId: 用户id [long] 
     47 
     48是否登录 :是 
     49缓存时间 : 否 
     50是否分页 : 否 
     51 
     52返回结果: 
     53 
     54{ 
     55    code:0成功,-1失败 
     56    message:提示信息 
     57    version: 接口版本号如1.0,1.0(latest)表示最新版本 
     58 
     59    carInfo: { 
     60        isVip: 是否认证车主(0-否;1-是) 
     61        brandId: 品牌id 
     62        brandName: 品牌名 
     63        serialId: 车系id 
     64        serialName: 车系名 
     65    } 
     66} 
     67 
     68==== 2.2. 用户权限接口 ==== 
     69 
     70原有接口:/1.0/user/getUserPermission.do 
     71添加锁用户判断 
     72 
     73}}}