Changes between Version 3 and Version 4 of yimei2.1.0_api


Ignore:
Timestamp:
09/17/2015 06:31:56 PM (11 years ago)
Author:
caomenglin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • yimei2.1.0_api

    v3 v4  
    138138 
    139139 
     140== 8.获取项目列表(修改) ==  
     141 
     142开发环境:http://dev15.pclady.com.cn/app/getProjectList.jsp  [[BR]] 
     143线上环境:http://plastic.pclady.com.cn/app/getProjectList.jsp [[BR]] 
     144mrobot环境:http://mrobot.pclady.com.cn/x-86400/yimei-plastic/app/getProjectList.jsp [[BR]] 
     145 
     146**说明** 
     147 
     148>获取部位,项目 
     149 
     150**缓存时间** 
     151 
     152>24小时 
     153 
     154**提交方式** 
     155 
     156>GET 
     157 
     158**数据来源** 
     159 
     160> 整形库编辑后台 
     161 
     162**参数** 
     163 
     164||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||=说明=|| 
     165||= appVersion =||= 版本号 =||= int =||= "" =||= 否 =||版本号去掉.如2.1.0->210,版本号大于等2.1.0时才返回热点项目|| 
     166 
     167**返回** 
     168 
     169{{{#!java 
     170{ 
     171    "status": 0, 
     172    "msg": "请求成功", 
     173    "total": 11, 
     174    "data": [ 
     175        { 
     176            "typeID": "1", 
     177            "name": "一级部位", 
     178            "subTitle": "我是小标题", 
     179            "imageUrl": "", 
     180            "type":1, 
     181            "item": [ 
     182                { 
     183                    "typeID": "101", 
     184                    "name": "二级部位", 
     185                    "item": [ 
     186                        { 
     187                            "typeID": "201", 
     188                            "name": "项目名称" 
     189                        } 
     190                    ] 
     191                } 
     192            ] 
     193        } 
     194    ] 
     195} 
     196 
     197}}} 
     198 
     199**返回参数说明** 
     200||= 参数名 =||= 参数含义 =||=参数名=||=参数含意=|| 
     201||= typeID =||= 类型ID=||= name =||=部位名称=|| 
     202||= subTitle =||= 热点项目的二级标题=||= imageUrl =||=热点项目的图片地址=|| 
     203||= type =||= 1:热点项目,0:其它项目=||= =||==|| 
    140204----------