Changes between Initial Version and Version 1 of app2.2.0/refund


Ignore:
Timestamp:
10/22/2015 04:30:50 PM (10 years ago)
Author:
wuyuanbo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • app2.2.0/refund

    v1 v1  
     1[[TOC]] 
     2 
     3= 赔付 = 
     4 
     5== 获取退款记录列表 == 
     6 
     7> 线上:[http://best.pconline.com.cn/app/topicType/cache/listTopicType.do?level=2&parentId=2 /app/topicType/cache/listTopicType.do] 
     8 
     9**说明** 
     10 
     11> 获取用户的退款记录列表 
     12 
     13**提交方式** 
     14 
     15> post 
     16 
     17**是否需要登录** 
     18 
     19> true 
     20 
     21**缓存方式** 
     22 
     23> 无 
     24 
     25**缓存时间** 
     26 
     27> 无 
     28 
     29**参数** 
     30 
     31||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =|| 
     32||pageNo||第几页||int||1||是|| 
     33||pageSize||一页显示多少数据||int||10||是|| 
     34||common_session_id||-||string||""||是|| 
     35 
     36**返回** 
     37{{{#!java 
     38result { 
     39        status: 1, 
     40        msg: '请求成功', 
     41        pageNo: 1, 
     42        pageSize: 10, 
     43        total: 20, 
     44        pageTotal: 2, 
     45        data: [ 
     46             $receiveComment 
     47        ] 
     48} 
     49}}} 
     50 
     51[http://trac.pc.com.cn/pc_best/wiki/app2.0/object_properties#爆料类型 $topicType] 
     52 
     53 
     54 
     55 
     56 
     57 
     58 
     59== 退款记录 == 
     60 
     61> 线上:[http://best.pconline.com.cn/app/topicType/cache/listIndexTopicType.do?limit=15 /app/topicType/cache/listIndexTopicType.do] 
     62 
     63**说明** 
     64 
     65> 获取用户退款记录详情 
     66 
     67> 使用场景:用户下单后取消订单 
     68 
     69**提交方式** 
     70 
     71> post 
     72 
     73**是否需要登录** 
     74 
     75> true 
     76 
     77**缓存方式** 
     78 
     79> 无 
     80 
     81**缓存时间** 
     82 
     83> 无 
     84 
     85**参数** 
     86 
     87||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =|| 
     88||refundId||赔付申请id||int||0||是|| 
     89||common_session_id||-||string||""||是|| 
     90 
     91 
     92**返回** 
     93{{{#!java 
     94result { 
     95        status: 1, 
     96        msg: '请求成功', 
     97        data: [ 
     98            orderId:123456 //取消订单的id 
     99        ] 
     100} 
     101}}} 
     102 
     103[http://trac.pc.com.cn/pc_best/wiki/app2.0/object_properties#爆料类型 $topicType] 
     104 
     105