OrderRPC.java
1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.diligrp.mobsite.getway.rpc;
import com.b2c.orders.domain.client.dto.request.OrderListRequestDto;
import com.b2c.orders.domain.client.dto.response.OrderListResponseDto;
import com.diligrp.mobsite.getway.domain.protocol.ProductAppraise;
import com.diligrp.titan.sdk.output.PageOutput;
import java.util.List;
/**
* <B>Description</B> 订单 <br />
* <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
* 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
* <B>Company</B> 地利集团
* @createTime 2014年9月1日 下午6:30:54
* @author zhangshirui
*/
public interface OrderRPC {
/**
* 获取订单列表
* @param input
* @param userId
* @return
* @createTime 2014年9月2日 下午2:36:47
* @author zhangshirui
*/
PageOutput<List<OrderListResponseDto>> getOrders(OrderListRequestDto input, Long userId);
/**
* 根据id查询订单详情
* @param orderId
* @param userId
* @createTime 2014年9月3日 上午11:08:03
* @author zhangshirui
* @return
*/
OrderListResponseDto getOrderById(Long orderId, Long userId);
/**
* 取消订单
* @param orderId
* @param reason
* @param userId
* @return
* @createTime 2014年9月3日 上午11:27:08
* @author zhangshirui
*/
Integer cancelOrder(Long orderId, String reason, Long userId);
/**
* 确认提货
* @param orderId
* @param userId
* @return
* @createTime 2014年9月3日 下午4:46:26
* @author zhangshirui
*/
Integer confirmPickUp(Long orderId, String paytoken, Long userId);
/**
* 发布商品评价
* @param productAppraises
* @param userId
*/
void addComment(List<ProductAppraise> productAppraises, Long orderId, Long userId);
}