Changes between Version 9 and Version 10 of price_api


Ignore:
Timestamp:
03/10/2015 11:27:57 AM (11 years ago)
Author:
oujianqiang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • price_api

    v9 v10  
    18241824 
    18251825---------- 
     1826 
     1827 
     1828== 4.5我发出的评论 ==  
     1829 
     1830> listMySendComment 
     1831 
     1832**后端接口** 
     1833 
     1834> [http://trac.pc.com.cn/pc_best/wiki/app2.0/03_personal#我发出的评论 我发出的评论] 
     1835 
     1836**说明** 
     1837 
     1838> 获得用户发出的评论列表 
     1839 
     1840**提交方式** 
     1841 
     1842> GET 
     1843 
     1844**参数** 
     1845 
     1846||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =|| 
     1847||common_session_id||-||String||""||是|| 
     1848||pageNo||页数||int||1||是|| 
     1849||pageSize||页面大小||int||10||是|| 
     1850 
     1851**返回** 
     1852 
     1853*注意:该接口返回格式为bip的接口格式,与其他接口不一致。* 
     1854 
     1855{{{#!java 
     1856{ 
     1857  pageNo: 1, 
     1858  pageSize: 10, 
     1859  total: 20, 
     1860  pageTotal: 2, 
     1861  msg: "请求成功", 
     1862  data: [ 
     1863    "$sendComment" 
     1864  ] 
     1865} 
     1866}}} 
     1867 
     1868[http://trac.pc.com.cn/pc_best/wiki/app2.0/object_properties#发出的评论 $sendComment] 
     1869 
     1870----------