Commit 4c2380a3d69626dc04deaf3c7b965d3753450cd7
Merge remote-tracking branch 'origin/dev' into dev
Showing
43 changed files
with
0 additions
and
2940 deletions
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/common/enums/OrderRefundStateEnum.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.common.enums; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.common.Constant; | |
4 | - | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 订单退款状态 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2015年4月30日 下午2:12:45 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | -public enum OrderRefundStateEnum { | |
15 | - /** | |
16 | - * 10卖家待审核,20卖家审核通过,30卖家审核不通过,40申请退款取消,50平台申诉处理中,60退款申诉成功,70退款申诉失败,80退款申诉取消 | |
17 | - * 10待审核 | |
18 | - */ | |
19 | - STATE_WAIT_APPROVE(10,"卖家审核中","我们已通知卖家尽快处理,请耐心等待"), | |
20 | - /** | |
21 | - * 20-审核通过 | |
22 | - */ | |
23 | - STATE_APPROVED(20,"卖家同意退款","退款金额"+Constant.ORDER_REPLACE_MONEY+"元已返还到您的付款账户中,请注意查收"), | |
24 | - /** | |
25 | - * 30-审核不通过 | |
26 | - */ | |
27 | - STATE_NOT_APPROVED(30,"卖家拒绝退款",""), | |
28 | - /** | |
29 | - * 40-取消 | |
30 | - */ | |
31 | - STATE_CANCELED(40,"已取消",""), | |
32 | - /** | |
33 | - * 50-处理中 | |
34 | - */ | |
35 | - STATE_PROCESSING(50,"平台申诉处理中","我们会在三个工作日内处理完您的退款申诉,如有疑问请咨询客服"), | |
36 | - STATE_APPLY_SUCCESS(60,"申诉成功","退款金额"+Constant.ORDER_REPLACE_MONEY+"元已返还到您的付款账户中,请注意查收!"), | |
37 | - STATE_APPLY_FAILED(70,"申诉失败","经调查,按平台规则,决定驳回您的申诉"), | |
38 | - STATE_APPLY_CANCELED(80,"申诉取消",""), | |
39 | - | |
40 | - STATE_WaitRepayment(90,"卖家审核通过等待打款",""); | |
41 | - | |
42 | - private int state; | |
43 | - private String stateName; | |
44 | - private String stateDesc; | |
45 | - | |
46 | - private OrderRefundStateEnum(int state,String stateName,String stateDesc){ | |
47 | - this.state = state; | |
48 | - this.stateName = stateName; | |
49 | - this.stateDesc = stateDesc; | |
50 | - } | |
51 | - | |
52 | - public int getState(){ | |
53 | - return this.state; | |
54 | - } | |
55 | - | |
56 | - public String getStateName(){ | |
57 | - return this.stateName; | |
58 | - } | |
59 | - | |
60 | - public String getStateDesc(){ | |
61 | - return this.stateDesc; | |
62 | - } | |
63 | - | |
64 | - public static OrderRefundStateEnum getEnumByState(int state){ | |
65 | - for(OrderRefundStateEnum stateEnum : OrderRefundStateEnum.values()){ | |
66 | - if (state == stateEnum.getState()) { | |
67 | - return stateEnum; | |
68 | - } | |
69 | - } | |
70 | - return null; | |
71 | - } | |
72 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/act/model/ActModel.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.act.model; | |
2 | - | |
3 | -import java.io.Serializable; | |
4 | - | |
5 | -/** | |
6 | - * <B>Description</B> 七巧板model <br /> | |
7 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
8 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
9 | - * <B>Company</B> 地利集团 | |
10 | - * | |
11 | - * @author wujianjun | |
12 | - * @createTime 2016-1-14 15:38:37 | |
13 | - */ | |
14 | -public class ActModel implements Serializable { | |
15 | - /** | |
16 | - * 开始时间 | |
17 | - */ | |
18 | - private Long startTime; | |
19 | - /** | |
20 | - * 结束时间 | |
21 | - */ | |
22 | - private Long endTime; | |
23 | - /** | |
24 | - * 图片地址 | |
25 | - */ | |
26 | - private String imgUrl; | |
27 | - /** | |
28 | - * 题目 | |
29 | - */ | |
30 | - private String title; | |
31 | - /** | |
32 | - * 关键字 | |
33 | - */ | |
34 | - private String keywords; | |
35 | - /** | |
36 | - * 描述 | |
37 | - */ | |
38 | - private String desc; | |
39 | - /** | |
40 | - * 活动名字 | |
41 | - */ | |
42 | - private String name; | |
43 | - /** | |
44 | - * 连接码 | |
45 | - */ | |
46 | - private String uri; | |
47 | - | |
48 | - public String getDesc() { | |
49 | - return desc; | |
50 | - } | |
51 | - | |
52 | - public void setDesc(String desc) { | |
53 | - this.desc = desc; | |
54 | - } | |
55 | - | |
56 | - public Long getEndTime() { | |
57 | - return endTime; | |
58 | - } | |
59 | - | |
60 | - public void setEndTime(Long endTime) { | |
61 | - this.endTime = endTime; | |
62 | - } | |
63 | - | |
64 | - public String getImgUrl() { | |
65 | - return imgUrl; | |
66 | - } | |
67 | - | |
68 | - public void setImgUrl(String imgUrl) { | |
69 | - this.imgUrl = imgUrl; | |
70 | - } | |
71 | - | |
72 | - public String getKeywords() { | |
73 | - return keywords; | |
74 | - } | |
75 | - | |
76 | - public void setKeywords(String keywords) { | |
77 | - this.keywords = keywords; | |
78 | - } | |
79 | - | |
80 | - public String getName() { | |
81 | - return name; | |
82 | - } | |
83 | - | |
84 | - public void setName(String name) { | |
85 | - this.name = name; | |
86 | - } | |
87 | - | |
88 | - public Long getStartTime() { | |
89 | - return startTime; | |
90 | - } | |
91 | - | |
92 | - public void setStartTime(Long startTime) { | |
93 | - this.startTime = startTime; | |
94 | - } | |
95 | - | |
96 | - public String getTitle() { | |
97 | - return title; | |
98 | - } | |
99 | - | |
100 | - public void setTitle(String title) { | |
101 | - this.title = title; | |
102 | - } | |
103 | - | |
104 | - public String getUri() { | |
105 | - return uri; | |
106 | - } | |
107 | - | |
108 | - public void setUri(String uri) { | |
109 | - this.uri = uri; | |
110 | - } | |
111 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/AKeyReceiptGoodsReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.saler.order.ConfirmReceiveGoods; | |
5 | - | |
6 | -import java.util.List; | |
7 | - | |
8 | -/** | |
9 | - * <B>Description</B> 发布商品评价 <br /> | |
10 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
11 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
12 | - * <B>Company</B> 地利集团 | |
13 | - * | |
14 | - * @author wujianjun | |
15 | - * @createTime 2014/10/22 14:53 | |
16 | - */ | |
17 | -@SuppressWarnings("serial") | |
18 | -public class AKeyReceiptGoodsReq extends BaseReq { | |
19 | - /** | |
20 | - *订单id集合 | |
21 | - * */ | |
22 | - private List<ConfirmReceiveGoods> orderIdList; | |
23 | - | |
24 | - | |
25 | - public List<ConfirmReceiveGoods> getOrderIdList() { | |
26 | - return orderIdList; | |
27 | - } | |
28 | - | |
29 | - public void setOrderIdList(List<ConfirmReceiveGoods> orderIdList) { | |
30 | - this.orderIdList = orderIdList; | |
31 | - } | |
32 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/AKeyReceiptGoodsResp.java deleted
100644 → 0
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/AffirmClaimsReq.java deleted
100644 → 0
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/AffirmClaimsResp.java deleted
100644 → 0
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/CancelClaimsReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | - | |
5 | -/** | |
6 | - * Created by xxxzzz on 2016/11/25. | |
7 | - */ | |
8 | -public class CancelClaimsReq extends BaseReq { | |
9 | - | |
10 | - | |
11 | - private Long id; | |
12 | - | |
13 | - | |
14 | - public Long getId() { | |
15 | - return id; | |
16 | - } | |
17 | - | |
18 | - public void setId(Long id) { | |
19 | - this.id = id; | |
20 | - } | |
21 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/CancelClaimsResp.java deleted
100644 → 0
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/CancelRefundReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | - | |
5 | -/** | |
6 | - * Created by xxxzzz on 2016/11/25. | |
7 | - */ | |
8 | -public class CancelRefundReq extends BaseReq { | |
9 | - | |
10 | - | |
11 | - private Long id; | |
12 | - | |
13 | - | |
14 | - public Long getId() { | |
15 | - return id; | |
16 | - } | |
17 | - | |
18 | - public void setId(Long id) { | |
19 | - this.id = id; | |
20 | - } | |
21 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/CancelRefundResp.java deleted
100644 → 0
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetClaimsDetailReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | - | |
5 | -import javax.validation.constraints.NotNull; | |
6 | - | |
7 | -/** | |
8 | - * Created by xxxzzz on 2016/9/19. | |
9 | - */ | |
10 | -public class GetClaimsDetailReq extends BaseReq { | |
11 | - | |
12 | - | |
13 | - @NotNull(message = "理赔id不能为空") | |
14 | - private Long claimsApplyId; | |
15 | - | |
16 | - | |
17 | - public Long getClaimsApplyId() { | |
18 | - return claimsApplyId; | |
19 | - } | |
20 | - | |
21 | - public void setClaimsApplyId(Long claimsApplyId) { | |
22 | - this.claimsApplyId = claimsApplyId; | |
23 | - } | |
24 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetClaimsDetailResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.order.model.ClaimsInfoVO; | |
5 | - | |
6 | -import javax.validation.constraints.NotNull; | |
7 | - | |
8 | -/** | |
9 | - * Created by xxxzzz on 2016/9/19. | |
10 | - */ | |
11 | -public class GetClaimsDetailResp extends BaseResp { | |
12 | - | |
13 | - | |
14 | - private ClaimsInfoVO ClaimsInfo; | |
15 | - | |
16 | - | |
17 | - public ClaimsInfoVO getClaimsInfo() { | |
18 | - return ClaimsInfo; | |
19 | - } | |
20 | - | |
21 | - public void setClaimsInfo(ClaimsInfoVO claimsInfo) { | |
22 | - ClaimsInfo = claimsInfo; | |
23 | - } | |
24 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetClaimsListReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.base.BaseListReq; | |
4 | - | |
5 | -/** | |
6 | - * Created by xxxzzz on 2016/9/19. | |
7 | - */ | |
8 | -public class GetClaimsListReq extends BaseListReq { | |
9 | - | |
10 | - private Long orderId; | |
11 | - | |
12 | - | |
13 | - public Long getOrderId() { | |
14 | - return orderId; | |
15 | - } | |
16 | - | |
17 | - public void setOrderId(Long orderId) { | |
18 | - this.orderId = orderId; | |
19 | - } | |
20 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetClaimsListResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.base.BaseListResp; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.order.model.ClaimsInfoVO; | |
5 | - | |
6 | -import java.util.List; | |
7 | - | |
8 | -/** | |
9 | - * Created by xxxzzz on 2016/9/19. | |
10 | - */ | |
11 | -public class GetClaimsListResp extends BaseListResp { | |
12 | - | |
13 | - | |
14 | - private List<ClaimsInfoVO> claimsInfos ; | |
15 | - | |
16 | - | |
17 | - public List<ClaimsInfoVO> getClaimsInfos() { | |
18 | - return claimsInfos; | |
19 | - } | |
20 | - | |
21 | - public void setClaimsInfos(List<ClaimsInfoVO> claimsInfos) { | |
22 | - this.claimsInfos = claimsInfos; | |
23 | - } | |
24 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetClaimsReasonsReq.java deleted
100644 → 0
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetClaimsReasonsResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.user.MemberInfo; | |
5 | - | |
6 | -import java.util.List; | |
7 | - | |
8 | -/** | |
9 | - * Created by xxxzzz on 2016/9/19. | |
10 | - */ | |
11 | -public class GetClaimsReasonsResp extends BaseResp { | |
12 | - | |
13 | - | |
14 | - private List<MemberInfo> claimsReasons; | |
15 | - | |
16 | - | |
17 | - public List<MemberInfo> getClaimsReasons() { | |
18 | - return claimsReasons; | |
19 | - } | |
20 | - | |
21 | - public void setClaimsReasons(List<MemberInfo> claimsReasons) { | |
22 | - this.claimsReasons = claimsReasons; | |
23 | - } | |
24 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetClaimsRequiresReq.java deleted
100644 → 0
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetClaimsRequiresResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.user.RequireInfo; | |
5 | - | |
6 | -import java.util.List; | |
7 | - | |
8 | -/** | |
9 | - * Created by xxxzzz on 2016/9/19. | |
10 | - */ | |
11 | -public class GetClaimsRequiresResp extends BaseResp { | |
12 | - | |
13 | - | |
14 | - private List<RequireInfo> claimsRequires; | |
15 | - | |
16 | - public List<RequireInfo> getClaimsRequires() { | |
17 | - return claimsRequires; | |
18 | - } | |
19 | - | |
20 | - public void setClaimsRequires(List<RequireInfo> claimsRequires) { | |
21 | - this.claimsRequires = claimsRequires; | |
22 | - } | |
23 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetRefundDetailReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | - | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 申请退款订单详情 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2014年10月21日 下午4:22:32 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | - | |
15 | -@SuppressWarnings("serial") | |
16 | -public class GetRefundDetailReq extends BaseReq { | |
17 | - | |
18 | - /** | |
19 | - * 退款id | |
20 | - */ | |
21 | - private Long refundId; | |
22 | - | |
23 | - | |
24 | - /** | |
25 | - * get value of GetRefundDetailReq.refundId | |
26 | - * @return the refundId | |
27 | - * @createTime 2014年10月21日 下午8:34:47 | |
28 | - * @author zhangshirui | |
29 | - */ | |
30 | - public Long getRefundId() { | |
31 | - return refundId; | |
32 | - } | |
33 | - | |
34 | - | |
35 | - /** | |
36 | - * set value of GetRefundDetailReq.refundId | |
37 | - * @param refundId the refundId to set | |
38 | - * @createTime 2014年10月21日 下午8:34:47 | |
39 | - * @author zhangshirui | |
40 | - */ | |
41 | - public void setRefundId(Long refundId) { | |
42 | - this.refundId = refundId; | |
43 | - } | |
44 | - | |
45 | - | |
46 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetRefundDetailResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
4 | - | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 申请退款订单详情 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2014年10月21日 下午4:23:07 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | -@SuppressWarnings("serial") | |
15 | -public class GetRefundDetailResp extends BaseResp { | |
16 | - | |
17 | - /** | |
18 | - * 退款订单详情 | |
19 | - */ | |
20 | - private RefundOrderDetail refundOrderDetail; | |
21 | - | |
22 | - | |
23 | - /** | |
24 | - * get value of GetRefundDetailResp.refundOrderDetail | |
25 | - * @return the refundOrderDetail | |
26 | - * @createTime 2014年10月21日 下午4:37:33 | |
27 | - * @author zhangshirui | |
28 | - */ | |
29 | - public RefundOrderDetail getRefundOrderDetail() { | |
30 | - return refundOrderDetail; | |
31 | - } | |
32 | - | |
33 | - | |
34 | - /** | |
35 | - * set value of GetRefundDetailResp.refundOrderDetail | |
36 | - * @param refundOrderDetail the refundOrderDetail to set | |
37 | - * @createTime 2014年10月21日 下午4:37:33 | |
38 | - * @author zhangshirui | |
39 | - */ | |
40 | - public void setRefundOrderDetail(RefundOrderDetail refundOrderDetail) { | |
41 | - this.refundOrderDetail = refundOrderDetail; | |
42 | - } | |
43 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetRefundOrderListReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.base.BaseListReq; | |
4 | - | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 获取申请退款订单列表 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2014年10月21日 下午2:34:23 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | -@SuppressWarnings("serial") | |
15 | -public class GetRefundOrderListReq extends BaseListReq { | |
16 | - | |
17 | - /** | |
18 | - * 查询类型:0采购中心查询,1销售中心查询 | |
19 | - * 0采购中心查询 | |
20 | - */ | |
21 | - public static final int QUERY_TYPE_PURCHASE = 0; | |
22 | - /** | |
23 | - * 1销售中心查询 | |
24 | - */ | |
25 | - public static final int QUERY_TYPE_SALE = 1; | |
26 | - | |
27 | - /** | |
28 | - * | |
29 | - * 查询类型:0采购中心查询,1销售中心查询;必传 | |
30 | - */ | |
31 | - private Integer queryType; | |
32 | - | |
33 | - | |
34 | - /** | |
35 | - * 订单类型(10商品订单,20样品订单,30甩货订单,40赊账订单,50拼购订单) | |
36 | - */ | |
37 | - private Integer orderType; | |
38 | - | |
39 | - public Integer getOrderType() { | |
40 | - return orderType; | |
41 | - } | |
42 | - | |
43 | - | |
44 | - public void setOrderType(Integer orderType) { | |
45 | - this.orderType = orderType; | |
46 | - } | |
47 | - | |
48 | - /** | |
49 | - * get value of GetRefundOrderListReq.queryType | |
50 | - * @return the queryType | |
51 | - * @createTime 2014年10月21日 下午6:02:29 | |
52 | - * @author zhangshirui | |
53 | - */ | |
54 | - public Integer getQueryType() { | |
55 | - return queryType; | |
56 | - } | |
57 | - | |
58 | - | |
59 | - /** | |
60 | - * set value of GetRefundOrderListReq.queryType | |
61 | - * @param queryType the queryType to set | |
62 | - * @createTime 2014年10月21日 下午6:02:29 | |
63 | - * @author zhangshirui | |
64 | - */ | |
65 | - public void setQueryType(Integer queryType) { | |
66 | - this.queryType = queryType; | |
67 | - } | |
68 | - | |
69 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetRefundOrderListResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import java.util.List; | |
4 | - | |
5 | -import com.diligrp.mobsite.getway.domain.base.BaseListResp; | |
6 | - | |
7 | - | |
8 | -/** | |
9 | - * <B>Description</B> 获取申请退款订单列表 <br /> | |
10 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
11 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
12 | - * <B>Company</B> 地利集团 | |
13 | - * @createTime 2014年10月21日 下午2:35:03 | |
14 | - * @author zhangshirui | |
15 | - */ | |
16 | -@SuppressWarnings("serial") | |
17 | -public class GetRefundOrderListResp extends BaseListResp { | |
18 | - | |
19 | - /** | |
20 | - * 申请退款订单列表 | |
21 | - */ | |
22 | - private List<RefundOrder> refundOrder; | |
23 | - | |
24 | - /** | |
25 | - * get value of GetRefundOrderListResp.refundOrder | |
26 | - * @return the refundOrder | |
27 | - * @createTime 2014年10月21日 下午4:17:45 | |
28 | - * @author zhangshirui | |
29 | - */ | |
30 | - public List<RefundOrder> getRefundOrder() { | |
31 | - return refundOrder; | |
32 | - } | |
33 | - | |
34 | - | |
35 | - /** | |
36 | - * set value of GetRefundOrderListResp.refundOrder | |
37 | - * @param refundOrder the refundOrder to set | |
38 | - * @createTime 2014年10月21日 下午4:17:45 | |
39 | - * @author zhangshirui | |
40 | - */ | |
41 | - public void setRefundOrder(List<RefundOrder> refundOrder) { | |
42 | - this.refundOrder = refundOrder; | |
43 | - } | |
44 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetRefundReasonReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | - | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 获取退款原因 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2014年10月21日 下午2:57:26 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | -@SuppressWarnings("serial") | |
15 | -public class GetRefundReasonReq extends BaseReq { | |
16 | - | |
17 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/GetRefundReasonResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import java.util.List; | |
4 | - | |
5 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
6 | - | |
7 | - | |
8 | -/** | |
9 | - * <B>Description</B> 获取退款原因 <br /> | |
10 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
11 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
12 | - * <B>Company</B> 地利集团 | |
13 | - * @createTime 2014年10月21日 下午2:57:44 | |
14 | - * @author zhangshirui | |
15 | - */ | |
16 | -@SuppressWarnings("serial") | |
17 | -public class GetRefundReasonResp extends BaseResp { | |
18 | - | |
19 | - /** | |
20 | - * 退款原因 | |
21 | - */ | |
22 | - private List<String> reasons; | |
23 | - | |
24 | - | |
25 | - /** | |
26 | - * get value of GetRefundReasonResp.reasons | |
27 | - * @return the reasons | |
28 | - * @createTime 2014年10月21日 下午3:15:35 | |
29 | - * @author zhangshirui | |
30 | - */ | |
31 | - public List<String> getReasons() { | |
32 | - return reasons; | |
33 | - } | |
34 | - | |
35 | - | |
36 | - /** | |
37 | - * set value of GetRefundReasonResp.reasons | |
38 | - * @param reasons the reasons to set | |
39 | - * @createTime 2014年10月21日 下午3:15:35 | |
40 | - * @author zhangshirui | |
41 | - */ | |
42 | - public void setReasons(List<String> reasons) { | |
43 | - this.reasons = reasons; | |
44 | - } | |
45 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/OrderRefundReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | - | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 订单退款 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2014年9月1日 下午2:58:45 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | -@SuppressWarnings("serial") | |
15 | -public class OrderRefundReq extends BaseReq { | |
16 | - | |
17 | - /** | |
18 | - * 订单id | |
19 | - */ | |
20 | - private Long orderId; | |
21 | - | |
22 | - /** | |
23 | - * 退款原因 | |
24 | - */ | |
25 | - private String refundReason; | |
26 | - | |
27 | - /** | |
28 | - * 退款金额 | |
29 | - */ | |
30 | - private Long refundAmount; | |
31 | - | |
32 | - /** | |
33 | - * 退款说明 | |
34 | - */ | |
35 | - private String refundDesc; | |
36 | - /** | |
37 | - * 订单类型(30商品订单 ,40代购订单) | |
38 | - */ | |
39 | - private Integer orderType; | |
40 | - | |
41 | - public Integer getOrderType() { | |
42 | - return orderType; | |
43 | - } | |
44 | - | |
45 | - | |
46 | - public void setOrderType(Integer orderType) { | |
47 | - this.orderType = orderType; | |
48 | - } | |
49 | - | |
50 | - | |
51 | - /** | |
52 | - * get value of OrderRefundReq.orderId | |
53 | - * @return the orderId | |
54 | - * @createTime 2014年9月1日 下午6:27:35 | |
55 | - * @author zhangshirui | |
56 | - */ | |
57 | - public Long getOrderId() { | |
58 | - return orderId; | |
59 | - } | |
60 | - | |
61 | - | |
62 | - /** | |
63 | - * set value of OrderRefundReq.orderId | |
64 | - * @param orderId the orderId to set | |
65 | - * @createTime 2014年9月1日 下午6:27:35 | |
66 | - * @author zhangshirui | |
67 | - */ | |
68 | - public void setOrderId(Long orderId) { | |
69 | - this.orderId = orderId; | |
70 | - } | |
71 | - | |
72 | - | |
73 | - /** | |
74 | - * get value of OrderRefundReq.refundReason | |
75 | - * @return the refundReason | |
76 | - * @createTime 2014年9月1日 下午6:27:35 | |
77 | - * @author zhangshirui | |
78 | - */ | |
79 | - public String getRefundReason() { | |
80 | - return refundReason; | |
81 | - } | |
82 | - | |
83 | - | |
84 | - /** | |
85 | - * set value of OrderRefundReq.refundReason | |
86 | - * @param refundReason the refundReason to set | |
87 | - * @createTime 2014年9月1日 下午6:27:35 | |
88 | - * @author zhangshirui | |
89 | - */ | |
90 | - public void setRefundReason(String refundReason) { | |
91 | - this.refundReason = refundReason; | |
92 | - } | |
93 | - | |
94 | - | |
95 | - /** | |
96 | - * get value of OrderRefundReq.refundAmount | |
97 | - * @return the refundAmount | |
98 | - * @createTime 2014年9月1日 下午6:27:35 | |
99 | - * @author zhangshirui | |
100 | - */ | |
101 | - public Long getRefundAmount() { | |
102 | - return refundAmount; | |
103 | - } | |
104 | - | |
105 | - | |
106 | - /** | |
107 | - * set value of OrderRefundReq.refundAmount | |
108 | - * @param refundAmount the refundAmount to set | |
109 | - * @createTime 2014年9月1日 下午6:27:35 | |
110 | - * @author zhangshirui | |
111 | - */ | |
112 | - public void setRefundAmount(Long refundAmount) { | |
113 | - this.refundAmount = refundAmount; | |
114 | - } | |
115 | - | |
116 | - | |
117 | - /** | |
118 | - * get value of OrderRefundReq.refundDesc | |
119 | - * @return the refundDesc | |
120 | - * @createTime 2014年9月1日 下午6:27:35 | |
121 | - * @author zhangshirui | |
122 | - */ | |
123 | - public String getRefundDesc() { | |
124 | - return refundDesc; | |
125 | - } | |
126 | - | |
127 | - | |
128 | - /** | |
129 | - * set value of OrderRefundReq.refundDesc | |
130 | - * @param refundDesc the refundDesc to set | |
131 | - * @createTime 2014年9月1日 下午6:27:35 | |
132 | - * @author zhangshirui | |
133 | - */ | |
134 | - public void setRefundDesc(String refundDesc) { | |
135 | - this.refundDesc = refundDesc; | |
136 | - } | |
137 | - | |
138 | - | |
139 | - /* (non-Javadoc) | |
140 | - * @see java.lang.Object#toString() | |
141 | - */ | |
142 | - @Override | |
143 | - public String toString() { | |
144 | - StringBuilder builder = new StringBuilder(); | |
145 | - builder.append("OrderRefundReq [orderId="); | |
146 | - builder.append(orderId); | |
147 | - builder.append(", refundReason="); | |
148 | - builder.append(refundReason); | |
149 | - builder.append(", refundAmount="); | |
150 | - builder.append(refundAmount); | |
151 | - builder.append(", refundDesc="); | |
152 | - builder.append(refundDesc); | |
153 | - builder.append("]"); | |
154 | - return builder.toString(); | |
155 | - } | |
156 | - | |
157 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/OrderRefundResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
4 | - | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 订单退款 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2014年9月1日 下午3:02:35 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | -@SuppressWarnings("serial") | |
15 | -public class OrderRefundResp extends BaseResp { | |
16 | - | |
17 | - public static final int CANCEL_RESULT_FAILED = 520; | |
18 | - | |
19 | - /** | |
20 | - * 申请退款id | |
21 | - */ | |
22 | - private Long refundId; | |
23 | - | |
24 | - | |
25 | - /** | |
26 | - * get value of OrderRefundResp.refundId | |
27 | - * @return the refundId | |
28 | - * @createTime 2014年10月22日 上午11:19:40 | |
29 | - * @author zhangshirui | |
30 | - */ | |
31 | - public Long getRefundId() { | |
32 | - return refundId; | |
33 | - } | |
34 | - | |
35 | - | |
36 | - /** | |
37 | - * set value of OrderRefundResp.refundId | |
38 | - * @param refundId the refundId to set | |
39 | - * @createTime 2014年10月22日 上午11:19:40 | |
40 | - * @author zhangshirui | |
41 | - */ | |
42 | - public void setRefundId(Long refundId) { | |
43 | - this.refundId = refundId; | |
44 | - } | |
45 | - | |
46 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/RefundOrder.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.OrderProduct; | |
4 | - | |
5 | -import java.util.List; | |
6 | - | |
7 | -/** | |
8 | - * <B>Description</B> 退款订单 <br /> | |
9 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
10 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
11 | - * <B>Company</B> 地利集团 | |
12 | - * @createTime 2014年10月21日 下午3:47:07 | |
13 | - * @author zhangshirui | |
14 | - */ | |
15 | -public class RefundOrder { | |
16 | - public static final int APPEAL_ENABLE_YES = 1; | |
17 | - public static final int APPEAL_ENABLE_NO = 0; | |
18 | - | |
19 | - public static final int REFUND_ENABLE_YES = 1; | |
20 | - public static final int REFUND_ENABLE_NO = 0; | |
21 | - /** | |
22 | - * 订单id | |
23 | - */ | |
24 | - private Long orderId; | |
25 | - /** | |
26 | - * 申请退款id | |
27 | - */ | |
28 | - private Long refundId; | |
29 | - /** | |
30 | - * 申请时间 | |
31 | - */ | |
32 | - private String applyTime; | |
33 | - /** | |
34 | - * 退款金额 | |
35 | - */ | |
36 | - private Long refundAmount; | |
37 | - /** | |
38 | - * 退单状态:10卖家待审核,20卖家审核通过,30卖家审核不通过,40申请退款取消,50平台申诉处理中,60退款申诉成功,70退款申诉失败,80退款申诉取消 | |
39 | - */ | |
40 | - private Integer state; | |
41 | - /** | |
42 | - * 申请状态名称 | |
43 | - */ | |
44 | - private String stateName; | |
45 | - /** | |
46 | - * 店铺名称 | |
47 | - */ | |
48 | - private String shopName; | |
49 | - /** | |
50 | - * 卖家姓名 | |
51 | - */ | |
52 | - private String sellerName; | |
53 | - /** | |
54 | - * 卖家电话 | |
55 | - */ | |
56 | - private String sellerMobile; | |
57 | - /** | |
58 | - * 付款时间 | |
59 | - */ | |
60 | - private Long payTime; | |
61 | - /** | |
62 | - * 付款方式 | |
63 | - */ | |
64 | - private Integer payType; | |
65 | - | |
66 | - /** | |
67 | - * 是否能申诉 | |
68 | - * 2:是 | |
69 | - * 1:否 | |
70 | - */ | |
71 | - private Integer appealEnable; | |
72 | - /** | |
73 | - * 商品列表信息 | |
74 | - */ | |
75 | - private List<OrderProduct> orderProducts; | |
76 | - /** | |
77 | - * 订单类型 | |
78 | - */ | |
79 | - private Integer orderType; | |
80 | - | |
81 | - | |
82 | - | |
83 | - /** | |
84 | - * 总金额 | |
85 | - */ | |
86 | - private Long totalAmount; | |
87 | - /** | |
88 | - * 应付金额 | |
89 | - */ | |
90 | - private Long realPayAmount; | |
91 | - ///** | |
92 | - // * 优惠金额 | |
93 | - // */ | |
94 | - //private Long discountAmount; | |
95 | - /** | |
96 | - * 邮费 | |
97 | - */ | |
98 | - private Long postage; | |
99 | - | |
100 | - /** | |
101 | - * 是否可以取消退款申请: | |
102 | - */ | |
103 | - private Integer isCancelApply; | |
104 | - | |
105 | - public Integer getIsCancelApply() { | |
106 | - return isCancelApply; | |
107 | - } | |
108 | - | |
109 | - public void setIsCancelApply(Integer isCancelApply) { | |
110 | - this.isCancelApply = isCancelApply; | |
111 | - } | |
112 | - | |
113 | - public Long getTotalAmount() { | |
114 | - return totalAmount; | |
115 | - } | |
116 | - | |
117 | - public void setTotalAmount(Long totalAmount) { | |
118 | - this.totalAmount = totalAmount; | |
119 | - } | |
120 | - | |
121 | - public Long getPostage() { | |
122 | - return postage; | |
123 | - } | |
124 | - | |
125 | - public void setPostage(Long postage) { | |
126 | - this.postage = postage; | |
127 | - } | |
128 | - | |
129 | - /** | |
130 | - * 卖家拒绝理由 | |
131 | - */ | |
132 | - private String refuseReason; | |
133 | - | |
134 | - public String getRefuseReason() { | |
135 | - return refuseReason; | |
136 | - } | |
137 | - | |
138 | - public void setRefuseReason(String refuseReason) { | |
139 | - this.refuseReason = refuseReason; | |
140 | - } | |
141 | - | |
142 | - | |
143 | - public Integer getOrderType() { | |
144 | - return orderType; | |
145 | - } | |
146 | - | |
147 | - | |
148 | - public void setOrderType(Integer orderType) { | |
149 | - this.orderType = orderType; | |
150 | - } | |
151 | - | |
152 | - | |
153 | - /** | |
154 | - * get value of RefundOrder.orderId | |
155 | - * @return the orderId | |
156 | - * @createTime 2014年10月21日 下午4:04:06 | |
157 | - * @author zhangshirui | |
158 | - */ | |
159 | - public Long getOrderId() { | |
160 | - return orderId; | |
161 | - } | |
162 | - | |
163 | - | |
164 | - /** | |
165 | - * set value of RefundOrder.orderId | |
166 | - * @param orderId the orderId to set | |
167 | - * @createTime 2014年10月21日 下午4:04:06 | |
168 | - * @author zhangshirui | |
169 | - */ | |
170 | - public void setOrderId(Long orderId) { | |
171 | - this.orderId = orderId; | |
172 | - } | |
173 | - | |
174 | - /** | |
175 | - * get value of RefundOrder.applyTime | |
176 | - * @return the applyTime | |
177 | - * @createTime 2014年10月21日 下午4:04:06 | |
178 | - * @author zhangshirui | |
179 | - */ | |
180 | - public String getApplyTime() { | |
181 | - return applyTime; | |
182 | - } | |
183 | - | |
184 | - | |
185 | - /** | |
186 | - * set value of RefundOrder.applyTime | |
187 | - * @param applyTime the applyTime to set | |
188 | - * @createTime 2014年10月21日 下午4:04:06 | |
189 | - * @author zhangshirui | |
190 | - */ | |
191 | - public void setApplyTime(String applyTime) { | |
192 | - this.applyTime = applyTime; | |
193 | - } | |
194 | - | |
195 | - | |
196 | - /** | |
197 | - * get value of RefundOrder.orderProducts | |
198 | - * @return the orderProducts | |
199 | - * @createTime 2014年10月21日 下午4:04:06 | |
200 | - * @author zhangshirui | |
201 | - */ | |
202 | - public List<OrderProduct> getOrderProducts() { | |
203 | - return orderProducts; | |
204 | - } | |
205 | - | |
206 | - | |
207 | - /** | |
208 | - * set value of RefundOrder.orderProducts | |
209 | - * @param orderProducts the orderProducts to set | |
210 | - * @createTime 2014年10月21日 下午4:04:06 | |
211 | - * @author zhangshirui | |
212 | - */ | |
213 | - public void setOrderProducts(List<OrderProduct> orderProducts) { | |
214 | - this.orderProducts = orderProducts; | |
215 | - } | |
216 | - | |
217 | - | |
218 | - | |
219 | - /** | |
220 | - * get value of RefundOrder.state | |
221 | - * @return the state | |
222 | - * @createTime 2014年10月21日 下午4:06:42 | |
223 | - * @author zhangshirui | |
224 | - */ | |
225 | - public Integer getState() { | |
226 | - return state; | |
227 | - } | |
228 | - | |
229 | - | |
230 | - | |
231 | - /** | |
232 | - * set value of RefundOrder.state | |
233 | - * @param state the state to set | |
234 | - * @createTime 2014年10月21日 下午4:06:42 | |
235 | - * @author zhangshirui | |
236 | - */ | |
237 | - public void setState(Integer state) { | |
238 | - this.state = state; | |
239 | - } | |
240 | - | |
241 | - | |
242 | - | |
243 | - /** | |
244 | - * get value of RefundOrder.stateName | |
245 | - * @return the stateName | |
246 | - * @createTime 2014年10月21日 下午5:38:42 | |
247 | - * @author zhangshirui | |
248 | - */ | |
249 | - public String getStateName() { | |
250 | - return stateName; | |
251 | - } | |
252 | - | |
253 | - | |
254 | - | |
255 | - /** | |
256 | - * set value of RefundOrder.stateName | |
257 | - * @param stateName the stateName to set | |
258 | - * @createTime 2014年10月21日 下午5:38:42 | |
259 | - * @author zhangshirui | |
260 | - */ | |
261 | - public void setStateName(String stateName) { | |
262 | - this.stateName = stateName; | |
263 | - } | |
264 | - | |
265 | - | |
266 | - | |
267 | - /** | |
268 | - * get value of RefundOrder.refundId | |
269 | - * @return the refundId | |
270 | - * @createTime 2014年10月21日 下午8:07:40 | |
271 | - * @author zhangshirui | |
272 | - */ | |
273 | - public Long getRefundId() { | |
274 | - return refundId; | |
275 | - } | |
276 | - | |
277 | - | |
278 | - | |
279 | - /** | |
280 | - * set value of RefundOrder.refundId | |
281 | - * @param refundId the refundId to set | |
282 | - * @createTime 2014年10月21日 下午8:07:40 | |
283 | - * @author zhangshirui | |
284 | - */ | |
285 | - public void setRefundId(Long refundId) { | |
286 | - this.refundId = refundId; | |
287 | - } | |
288 | - | |
289 | - | |
290 | - | |
291 | - public String getShopName() { | |
292 | - return shopName; | |
293 | - } | |
294 | - | |
295 | - | |
296 | - | |
297 | - public void setShopName(String shopName) { | |
298 | - this.shopName = shopName; | |
299 | - } | |
300 | - | |
301 | - | |
302 | - | |
303 | - public Long getPayTime() { | |
304 | - return payTime; | |
305 | - } | |
306 | - | |
307 | - | |
308 | - | |
309 | - public void setPayTime(Long payTime) { | |
310 | - this.payTime = payTime; | |
311 | - } | |
312 | - | |
313 | - | |
314 | - | |
315 | - public Integer getPayType() { | |
316 | - return payType; | |
317 | - } | |
318 | - | |
319 | - | |
320 | - | |
321 | - public void setPayType(Integer payType) { | |
322 | - this.payType = payType; | |
323 | - } | |
324 | - | |
325 | - | |
326 | - | |
327 | - public Long getRefundAmount() { | |
328 | - return refundAmount; | |
329 | - } | |
330 | - | |
331 | - | |
332 | - | |
333 | - public void setRefundAmount(Long refundAmount) { | |
334 | - this.refundAmount = refundAmount; | |
335 | - } | |
336 | - | |
337 | - | |
338 | - | |
339 | - public Long getRealPayAmount() { | |
340 | - return realPayAmount; | |
341 | - } | |
342 | - | |
343 | - | |
344 | - | |
345 | - public void setRealPayAmount(Long realPayAmount) { | |
346 | - this.realPayAmount = realPayAmount; | |
347 | - } | |
348 | - | |
349 | - | |
350 | - | |
351 | - public String getSellerName() { | |
352 | - return sellerName; | |
353 | - } | |
354 | - | |
355 | - | |
356 | - | |
357 | - public void setSellerName(String sellerName) { | |
358 | - this.sellerName = sellerName; | |
359 | - } | |
360 | - | |
361 | - public String getSellerMobile() { | |
362 | - return sellerMobile; | |
363 | - } | |
364 | - | |
365 | - | |
366 | - public void setSellerMobile(String sellerMobile) { | |
367 | - this.sellerMobile = sellerMobile; | |
368 | - } | |
369 | - | |
370 | - public Integer getAppealEnable() { | |
371 | - return appealEnable; | |
372 | - } | |
373 | - | |
374 | - | |
375 | - public void setAppealEnable(Integer appealEnable) { | |
376 | - this.appealEnable = appealEnable; | |
377 | - } | |
378 | - | |
379 | - | |
380 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/RefundOrderDetail.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.order.model.OrderDetail; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.order.model.RefundAppeal; | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 申请退款详细信息 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * | |
12 | - * @createTime 2014年10月21日 下午4:25:07 | |
13 | - * @author zhangshirui | |
14 | - */ | |
15 | -public class RefundOrderDetail extends RefundOrder { | |
16 | - | |
17 | - /** | |
18 | - * 退款人 | |
19 | - */ | |
20 | - private String refundUser; | |
21 | - | |
22 | - /** | |
23 | - * 联系电话 | |
24 | - */ | |
25 | - private String mobile; | |
26 | - | |
27 | - /** | |
28 | - * 退款原因 | |
29 | - */ | |
30 | - private String refundReason; | |
31 | - | |
32 | - /** | |
33 | - * 退款留言(备注) | |
34 | - */ | |
35 | - private String remark; | |
36 | - | |
37 | - /** | |
38 | - * 状态描述 | |
39 | - */ | |
40 | - private String stateDesc; | |
41 | - /** | |
42 | - * 店铺Id | |
43 | - */ | |
44 | - private Long shopId; | |
45 | - /** | |
46 | - * 店铺名称 | |
47 | - */ | |
48 | - private String shopName; | |
49 | - /** | |
50 | - * 物流及验收备注 | |
51 | - */ | |
52 | - private String logisticsRemarks; | |
53 | - /** | |
54 | - * 提货方式id | |
55 | - */ | |
56 | - private Integer deliveryType; | |
57 | - /** | |
58 | - * 退款申诉信息 | |
59 | - */ | |
60 | - private RefundAppeal refundAppeal; | |
61 | - | |
62 | - | |
63 | - /** | |
64 | - * 订单详情 | |
65 | - */ | |
66 | - private OrderDetail order; | |
67 | - | |
68 | - public OrderDetail getOrder() { | |
69 | - return order; | |
70 | - } | |
71 | - | |
72 | - public void setOrder(OrderDetail order) { | |
73 | - this.order = order; | |
74 | - } | |
75 | - | |
76 | - /** | |
77 | - * get value of RefundOrderDetail.refundUser | |
78 | - * | |
79 | - * @return the refundUser | |
80 | - * @createTime 2014年10月21日 下午4:30:20 | |
81 | - * @author zhangshirui | |
82 | - */ | |
83 | - public String getRefundUser() { | |
84 | - return refundUser; | |
85 | - } | |
86 | - | |
87 | - /** | |
88 | - * set value of RefundOrderDetail.refundUser | |
89 | - * | |
90 | - * @param refundUser | |
91 | - * the refundUser to set | |
92 | - * @createTime 2014年10月21日 下午4:30:20 | |
93 | - * @author zhangshirui | |
94 | - */ | |
95 | - public void setRefundUser(String refundUser) { | |
96 | - this.refundUser = refundUser; | |
97 | - } | |
98 | - | |
99 | - /** | |
100 | - * get value of RefundOrderDetail.mobile | |
101 | - * | |
102 | - * @return the mobile | |
103 | - * @createTime 2014年10月21日 下午4:30:20 | |
104 | - * @author zhangshirui | |
105 | - */ | |
106 | - public String getMobile() { | |
107 | - return mobile; | |
108 | - } | |
109 | - | |
110 | - /** | |
111 | - * set value of RefundOrderDetail.mobile | |
112 | - * | |
113 | - * @param mobile | |
114 | - * the mobile to set | |
115 | - * @createTime 2014年10月21日 下午4:30:20 | |
116 | - * @author zhangshirui | |
117 | - */ | |
118 | - public void setMobile(String mobile) { | |
119 | - this.mobile = mobile; | |
120 | - } | |
121 | - | |
122 | - /** | |
123 | - * get value of RefundOrderDetail.refundReason | |
124 | - * | |
125 | - * @return the refundReason | |
126 | - * @createTime 2014年10月21日 下午4:30:20 | |
127 | - * @author zhangshirui | |
128 | - */ | |
129 | - public String getRefundReason() { | |
130 | - return refundReason; | |
131 | - } | |
132 | - | |
133 | - /** | |
134 | - * set value of RefundOrderDetail.refundReason | |
135 | - * | |
136 | - * @param refundReason | |
137 | - * the refundReason to set | |
138 | - * @createTime 2014年10月21日 下午4:30:20 | |
139 | - * @author zhangshirui | |
140 | - */ | |
141 | - public void setRefundReason(String refundReason) { | |
142 | - this.refundReason = refundReason; | |
143 | - } | |
144 | - | |
145 | - /** | |
146 | - * get value of RefundOrderDetail.remark | |
147 | - * | |
148 | - * @return the remark | |
149 | - * @createTime 2014年10月21日 下午4:30:20 | |
150 | - * @author zhangshirui | |
151 | - */ | |
152 | - public String getRemark() { | |
153 | - return remark; | |
154 | - } | |
155 | - | |
156 | - /** | |
157 | - * set value of RefundOrderDetail.remark | |
158 | - * | |
159 | - * @param remark | |
160 | - * the remark to set | |
161 | - * @createTime 2014年10月21日 下午4:30:20 | |
162 | - * @author zhangshirui | |
163 | - */ | |
164 | - public void setRemark(String remark) { | |
165 | - this.remark = remark; | |
166 | - } | |
167 | - | |
168 | - /** | |
169 | - * get value of RefundOrderDetail.stateDesc | |
170 | - * | |
171 | - * @return the stateDesc | |
172 | - * @createTime 2014年10月21日 下午5:45:09 | |
173 | - * @author zhangshirui | |
174 | - */ | |
175 | - public String getStateDesc() { | |
176 | - return stateDesc; | |
177 | - } | |
178 | - | |
179 | - /** | |
180 | - * set value of RefundOrderDetail.stateDesc | |
181 | - * | |
182 | - * @param stateDesc | |
183 | - * the stateDesc to set | |
184 | - * @createTime 2014年10月21日 下午5:45:09 | |
185 | - * @author zhangshirui | |
186 | - */ | |
187 | - public void setStateDesc(String stateDesc) { | |
188 | - this.stateDesc = stateDesc; | |
189 | - } | |
190 | - | |
191 | - /** | |
192 | - * get value of RefundOrderDetail.shopName | |
193 | - * | |
194 | - * @return the shopName | |
195 | - * @createTime 2014年10月21日 下午5:45:09 | |
196 | - * @author zhangshirui | |
197 | - */ | |
198 | - public String getShopName() { | |
199 | - return shopName; | |
200 | - } | |
201 | - | |
202 | - /** | |
203 | - * set value of RefundOrderDetail.shopName | |
204 | - * | |
205 | - * @param shopName | |
206 | - * the shopName to set | |
207 | - * @createTime 2014年10月21日 下午5:45:09 | |
208 | - * @author zhangshirui | |
209 | - */ | |
210 | - public void setShopName(String shopName) { | |
211 | - this.shopName = shopName; | |
212 | - } | |
213 | - | |
214 | - public RefundAppeal getRefundAppeal() { | |
215 | - return refundAppeal; | |
216 | - } | |
217 | - | |
218 | - public void setRefundAppeal(RefundAppeal refundAppeal) { | |
219 | - this.refundAppeal = refundAppeal; | |
220 | - } | |
221 | - | |
222 | - public Long getShopId() { | |
223 | - return shopId; | |
224 | - } | |
225 | - | |
226 | - public void setShopId(Long shopId) { | |
227 | - this.shopId = shopId; | |
228 | - } | |
229 | - | |
230 | - public String getLogisticsRemarks() { | |
231 | - return logisticsRemarks; | |
232 | - } | |
233 | - | |
234 | - public void setLogisticsRemarks(String logisticsRemarks) { | |
235 | - this.logisticsRemarks = logisticsRemarks; | |
236 | - } | |
237 | - | |
238 | - public Integer getDeliveryType() { | |
239 | - return deliveryType; | |
240 | - } | |
241 | - | |
242 | - public void setDeliveryType(Integer deliveryType) { | |
243 | - this.deliveryType = deliveryType; | |
244 | - } | |
245 | - | |
246 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/SearchOrdersByLogisticsIdReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | - | |
4 | -import java.util.List; | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 查询订单列表请求 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2015年12月17日 下午4:20:04 | |
12 | - * @author duanyugen | |
13 | - */ | |
14 | -@SuppressWarnings("serial") | |
15 | -public class SearchOrdersByLogisticsIdReq extends SearchOrderReq { | |
16 | - private Long logisticOrderId; | |
17 | - | |
18 | - /** | |
19 | - *物流订单挂的订单信息, 只有第三方则传30,既有第三方也有代购 就传 30,40 | |
20 | - * */ | |
21 | - private List<Integer> orderTypes; | |
22 | - | |
23 | - public Long getLogisticOrderId() { | |
24 | - return logisticOrderId; | |
25 | - } | |
26 | - | |
27 | - public void setLogisticOrderId(Long logisticOrderId) { | |
28 | - this.logisticOrderId = logisticOrderId; | |
29 | - } | |
30 | - | |
31 | - public List<Integer> getOrderTypes() { | |
32 | - return orderTypes; | |
33 | - } | |
34 | - | |
35 | - public void setOrderTypes(List<Integer> orderTypes) { | |
36 | - this.orderTypes = orderTypes; | |
37 | - } | |
38 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/SubmitRefundAppealReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.order.model.RefundAppeal; | |
5 | - | |
6 | -/** | |
7 | - * <B>提交申诉</B> <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2015年6月12日 下午12:59:00 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | -public class SubmitRefundAppealReq extends BaseReq { | |
15 | - | |
16 | - /** | |
17 | - * 退款申诉内容 | |
18 | - */ | |
19 | - private RefundAppeal refundAppeal; | |
20 | - | |
21 | - public RefundAppeal getRefundAppeal() { | |
22 | - return refundAppeal; | |
23 | - } | |
24 | - | |
25 | - public void setRefundAppeal(RefundAppeal refundAppeal) { | |
26 | - this.refundAppeal = refundAppeal; | |
27 | - } | |
28 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/SubmitRefundAppealResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
4 | - | |
5 | -/** | |
6 | - * <B>Description</B> <br /> | |
7 | - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br /> | |
8 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
9 | - * <B>Company</B> 地利集团 | |
10 | - * @createTime 2015年6月12日 下午1:01:42 | |
11 | - * @author zhangshirui | |
12 | - */ | |
13 | -public class SubmitRefundAppealResp extends BaseResp { | |
14 | - | |
15 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/model/ClaimsInfoVO.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order.model; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.PickInfo; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.OrderProduct; | |
5 | - | |
6 | -import java.util.Date; | |
7 | -import java.util.List; | |
8 | - | |
9 | -/** | |
10 | - * Created by xxxzzz on 2016/9/19. | |
11 | - */ | |
12 | -public class ClaimsInfoVO { | |
13 | - | |
14 | - //是否允许理赔:1允许 2 不允许 | |
15 | - public static final Integer APPEALFLAG_YES = 1; | |
16 | - public static final Integer APPEALFLAG_NO = 2; | |
17 | - | |
18 | - | |
19 | - private Long id; | |
20 | - | |
21 | - //理赔状态 | |
22 | - private String state; | |
23 | - | |
24 | - // ---申请信息--- | |
25 | - private Long applyUserId; | |
26 | - private String applyUserName; | |
27 | - // 理赔金额: 分 | |
28 | - private Long applyPrice; | |
29 | - // 理赔原因 | |
30 | - private String applyReason; | |
31 | - // 理赔说明 | |
32 | - private String applyMemo; | |
33 | - // 理赔要求 | |
34 | - private String applyDemand; | |
35 | - private String applyImgUrls; | |
36 | - private String createTime; | |
37 | - | |
38 | - // ---审核信息--- | |
39 | - private Long auditUserId; | |
40 | - private String auditUserName; | |
41 | - private String auditComment; | |
42 | - private Long auditPrice; | |
43 | - private String auditResult; | |
44 | - private String auditTime; | |
45 | - private String auditImgUrls; | |
46 | - | |
47 | - //是否可以发起理赔申诉:1不可以 2 可以 | |
48 | - private Integer appealFlag; | |
49 | - //是否可以取消理赔申请:1 可以 2 不可以 | |
50 | - private Integer isCancelApply; | |
51 | - | |
52 | - //理赔申诉相关=========== | |
53 | - //申诉补充说明 | |
54 | - private String appealComment; | |
55 | - //申诉提交时间 | |
56 | - private Date appealApplyTime; | |
57 | - //平台处理结果给买家申诉金额 | |
58 | - private Long appealResultPriceBuyer; | |
59 | - //平台处理结果给卖家申诉金额 | |
60 | - private Long appealResultPriceSeller; | |
61 | - // 平台处理结果 | |
62 | - private String appealResult; | |
63 | - // 平台结果处理理由 | |
64 | - private String appealResultReason; | |
65 | - //申述处理时间 | |
66 | - private Date appealResultTime; | |
67 | - //申诉处理人id | |
68 | - private Long appealResultUserId; | |
69 | - //申诉处理人账号名 | |
70 | - private String appealResultUserName; | |
71 | - private String appealResultImgUrls; | |
72 | - //平台处理结果复核说明 | |
73 | - private String appealAuditComment; | |
74 | - //平台处理结果复核处理时间 | |
75 | - private Date appealAuditTime; | |
76 | - //平台处理结果复核处理人id | |
77 | - private Long appealAuditUserId; | |
78 | - //平台处理结果复核处理人账号名 | |
79 | - private String appealAuditUserName; | |
80 | - | |
81 | - | |
82 | - /** 原始订单信息 */ | |
83 | - private Long orderId; | |
84 | - /** | |
85 | - * 店铺名称 | |
86 | - */ | |
87 | - private String shopName; | |
88 | - | |
89 | - /** | |
90 | - * 商品列表信息 | |
91 | - */ | |
92 | - private List<OrderProduct> orderProducts; | |
93 | - /** | |
94 | - * 总金额 | |
95 | - */ | |
96 | - private Long totalAmount; | |
97 | - /** | |
98 | - * 应付金额 | |
99 | - */ | |
100 | - private Long realPayAmount; | |
101 | - | |
102 | - /** | |
103 | - * 邮费 | |
104 | - */ | |
105 | - private Long postage; | |
106 | - | |
107 | - /** 付款方式 :(线上付款10,线下付款20,提货付款30,40赊账付款) */ | |
108 | - private Integer payType; | |
109 | - /** | |
110 | - * 提货留言 | |
111 | - */ | |
112 | - private String pickUserMsg; | |
113 | - | |
114 | - /** | |
115 | - * 提货人信息 | |
116 | - */ | |
117 | - private PickInfo pickInfo; | |
118 | - /** | |
119 | - * 提货时间 | |
120 | - */ | |
121 | - private String pickDate; | |
122 | - /** | |
123 | - * 物流信息 | |
124 | - */ | |
125 | - private LogisticsInfo logisticsInfo; | |
126 | - | |
127 | - private Long brokerage; | |
128 | - | |
129 | - private String submitDate; | |
130 | - | |
131 | - | |
132 | - /** | |
133 | - * 配送方式:10:上门自提,20送货上门 | |
134 | - */ | |
135 | - private Integer deliveryType; | |
136 | - | |
137 | - /** | |
138 | - * 店铺联系电话 | |
139 | - */ | |
140 | - private String contactMobile; | |
141 | - | |
142 | - | |
143 | - public Integer getDeliveryType() { | |
144 | - return deliveryType; | |
145 | - } | |
146 | - | |
147 | - public void setDeliveryType(Integer deliveryType) { | |
148 | - this.deliveryType = deliveryType; | |
149 | - } | |
150 | - | |
151 | - public String getContactMobile() { | |
152 | - return contactMobile; | |
153 | - } | |
154 | - | |
155 | - public void setContactMobile(String contactMobile) { | |
156 | - this.contactMobile = contactMobile; | |
157 | - } | |
158 | - | |
159 | - public Integer getIsCancelApply() { | |
160 | - return isCancelApply; | |
161 | - } | |
162 | - | |
163 | - public void setIsCancelApply(Integer isCancelApply) { | |
164 | - this.isCancelApply = isCancelApply; | |
165 | - } | |
166 | - | |
167 | - public String getSubmitDate() { | |
168 | - return submitDate; | |
169 | - } | |
170 | - | |
171 | - public void setSubmitDate(String submitDate) { | |
172 | - this.submitDate = submitDate; | |
173 | - } | |
174 | - | |
175 | - public Integer getPayType() { | |
176 | - return payType; | |
177 | - } | |
178 | - | |
179 | - public void setPayType(Integer payType) { | |
180 | - this.payType = payType; | |
181 | - } | |
182 | - | |
183 | - public String getPickUserMsg() { | |
184 | - return pickUserMsg; | |
185 | - } | |
186 | - | |
187 | - public void setPickUserMsg(String pickUserMsg) { | |
188 | - this.pickUserMsg = pickUserMsg; | |
189 | - } | |
190 | - | |
191 | - public PickInfo getPickInfo() { | |
192 | - return pickInfo; | |
193 | - } | |
194 | - | |
195 | - public void setPickInfo(PickInfo pickInfo) { | |
196 | - this.pickInfo = pickInfo; | |
197 | - } | |
198 | - | |
199 | - public String getPickDate() { | |
200 | - return pickDate; | |
201 | - } | |
202 | - | |
203 | - public void setPickDate(String pickDate) { | |
204 | - this.pickDate = pickDate; | |
205 | - } | |
206 | - | |
207 | - public LogisticsInfo getLogisticsInfo() { | |
208 | - return logisticsInfo; | |
209 | - } | |
210 | - | |
211 | - public void setLogisticsInfo(LogisticsInfo logisticsInfo) { | |
212 | - this.logisticsInfo = logisticsInfo; | |
213 | - } | |
214 | - | |
215 | - public Long getBrokerage() { | |
216 | - return brokerage; | |
217 | - } | |
218 | - | |
219 | - public void setBrokerage(Long brokerage) { | |
220 | - this.brokerage = brokerage; | |
221 | - } | |
222 | - | |
223 | - public String getShopName() { | |
224 | - return shopName; | |
225 | - } | |
226 | - | |
227 | - public void setShopName(String shopName) { | |
228 | - this.shopName = shopName; | |
229 | - } | |
230 | - | |
231 | - | |
232 | - public List<OrderProduct> getOrderProducts() { | |
233 | - return orderProducts; | |
234 | - } | |
235 | - | |
236 | - public void setOrderProducts(List<OrderProduct> orderProducts) { | |
237 | - this.orderProducts = orderProducts; | |
238 | - } | |
239 | - | |
240 | - public Long getTotalAmount() { | |
241 | - return totalAmount; | |
242 | - } | |
243 | - | |
244 | - public void setTotalAmount(Long totalAmount) { | |
245 | - this.totalAmount = totalAmount; | |
246 | - } | |
247 | - | |
248 | - public Long getRealPayAmount() { | |
249 | - return realPayAmount; | |
250 | - } | |
251 | - | |
252 | - public void setRealPayAmount(Long realPayAmount) { | |
253 | - this.realPayAmount = realPayAmount; | |
254 | - } | |
255 | - | |
256 | - public Long getPostage() { | |
257 | - return postage; | |
258 | - } | |
259 | - | |
260 | - public void setPostage(Long postage) { | |
261 | - this.postage = postage; | |
262 | - } | |
263 | - | |
264 | - public Long getOrderId() { | |
265 | - return orderId; | |
266 | - } | |
267 | - | |
268 | - public void setOrderId(Long orderId) { | |
269 | - this.orderId = orderId; | |
270 | - } | |
271 | - | |
272 | - public String getState() { | |
273 | - return state; | |
274 | - } | |
275 | - | |
276 | - public void setState(String state) { | |
277 | - this.state = state; | |
278 | - } | |
279 | - | |
280 | - public Integer getAppealFlag() { | |
281 | - return appealFlag; | |
282 | - } | |
283 | - | |
284 | - public void setAppealFlag(Integer appealFlag) { | |
285 | - this.appealFlag = appealFlag; | |
286 | - } | |
287 | - | |
288 | - public Long getId() { | |
289 | - return id; | |
290 | - } | |
291 | - | |
292 | - public void setId(Long id) { | |
293 | - this.id = id; | |
294 | - } | |
295 | - | |
296 | - public Long getApplyUserId() { | |
297 | - return applyUserId; | |
298 | - } | |
299 | - | |
300 | - public void setApplyUserId(Long applyUserId) { | |
301 | - this.applyUserId = applyUserId; | |
302 | - } | |
303 | - | |
304 | - public String getApplyUserName() { | |
305 | - return applyUserName; | |
306 | - } | |
307 | - | |
308 | - public void setApplyUserName(String applyUserName) { | |
309 | - this.applyUserName = applyUserName; | |
310 | - } | |
311 | - | |
312 | - public Long getApplyPrice() { | |
313 | - return applyPrice; | |
314 | - } | |
315 | - | |
316 | - public void setApplyPrice(Long applyPrice) { | |
317 | - this.applyPrice = applyPrice; | |
318 | - } | |
319 | - | |
320 | - public String getApplyReason() { | |
321 | - return applyReason; | |
322 | - } | |
323 | - | |
324 | - public void setApplyReason(String applyReason) { | |
325 | - this.applyReason = applyReason; | |
326 | - } | |
327 | - | |
328 | - public String getApplyMemo() { | |
329 | - return applyMemo; | |
330 | - } | |
331 | - | |
332 | - public void setApplyMemo(String applyMemo) { | |
333 | - this.applyMemo = applyMemo; | |
334 | - } | |
335 | - | |
336 | - public String getApplyDemand() { | |
337 | - return applyDemand; | |
338 | - } | |
339 | - | |
340 | - public void setApplyDemand(String applyDemand) { | |
341 | - this.applyDemand = applyDemand; | |
342 | - } | |
343 | - | |
344 | - public String getApplyImgUrls() { | |
345 | - return applyImgUrls; | |
346 | - } | |
347 | - | |
348 | - public void setApplyImgUrls(String applyImgUrls) { | |
349 | - this.applyImgUrls = applyImgUrls; | |
350 | - } | |
351 | - | |
352 | - public String getCreateTime() { | |
353 | - return createTime; | |
354 | - } | |
355 | - | |
356 | - public void setCreateTime(String createTime) { | |
357 | - this.createTime = createTime; | |
358 | - } | |
359 | - | |
360 | - public Long getAuditUserId() { | |
361 | - return auditUserId; | |
362 | - } | |
363 | - | |
364 | - public void setAuditUserId(Long auditUserId) { | |
365 | - this.auditUserId = auditUserId; | |
366 | - } | |
367 | - | |
368 | - public String getAuditUserName() { | |
369 | - return auditUserName; | |
370 | - } | |
371 | - | |
372 | - public void setAuditUserName(String auditUserName) { | |
373 | - this.auditUserName = auditUserName; | |
374 | - } | |
375 | - | |
376 | - public String getAuditComment() { | |
377 | - return auditComment; | |
378 | - } | |
379 | - | |
380 | - public void setAuditComment(String auditComment) { | |
381 | - this.auditComment = auditComment; | |
382 | - } | |
383 | - | |
384 | - public Long getAuditPrice() { | |
385 | - return auditPrice; | |
386 | - } | |
387 | - | |
388 | - public void setAuditPrice(Long auditPrice) { | |
389 | - this.auditPrice = auditPrice; | |
390 | - } | |
391 | - | |
392 | - public String getAuditResult() { | |
393 | - return auditResult; | |
394 | - } | |
395 | - | |
396 | - public void setAuditResult(String auditResult) { | |
397 | - this.auditResult = auditResult; | |
398 | - } | |
399 | - | |
400 | - public String getAuditTime() { | |
401 | - return auditTime; | |
402 | - } | |
403 | - | |
404 | - public void setAuditTime(String auditTime) { | |
405 | - this.auditTime = auditTime; | |
406 | - } | |
407 | - | |
408 | - public String getAuditImgUrls() { | |
409 | - return auditImgUrls; | |
410 | - } | |
411 | - | |
412 | - public void setAuditImgUrls(String auditImgUrls) { | |
413 | - this.auditImgUrls = auditImgUrls; | |
414 | - } | |
415 | - | |
416 | - | |
417 | - public String getAppealComment() { | |
418 | - return appealComment; | |
419 | - } | |
420 | - | |
421 | - public void setAppealComment(String appealComment) { | |
422 | - this.appealComment = appealComment; | |
423 | - } | |
424 | - | |
425 | - public Date getAppealApplyTime() { | |
426 | - return appealApplyTime; | |
427 | - } | |
428 | - | |
429 | - public void setAppealApplyTime(Date appealApplyTime) { | |
430 | - this.appealApplyTime = appealApplyTime; | |
431 | - } | |
432 | - | |
433 | - public Long getAppealResultPriceBuyer() { | |
434 | - return appealResultPriceBuyer; | |
435 | - } | |
436 | - | |
437 | - public void setAppealResultPriceBuyer(Long appealResultPriceBuyer) { | |
438 | - this.appealResultPriceBuyer = appealResultPriceBuyer; | |
439 | - } | |
440 | - | |
441 | - public Long getAppealResultPriceSeller() { | |
442 | - return appealResultPriceSeller; | |
443 | - } | |
444 | - | |
445 | - public void setAppealResultPriceSeller(Long appealResultPriceSeller) { | |
446 | - this.appealResultPriceSeller = appealResultPriceSeller; | |
447 | - } | |
448 | - | |
449 | - public String getAppealResult() { | |
450 | - return appealResult; | |
451 | - } | |
452 | - | |
453 | - public void setAppealResult(String appealResult) { | |
454 | - this.appealResult = appealResult; | |
455 | - } | |
456 | - | |
457 | - public String getAppealResultReason() { | |
458 | - return appealResultReason; | |
459 | - } | |
460 | - | |
461 | - public void setAppealResultReason(String appealResultReason) { | |
462 | - this.appealResultReason = appealResultReason; | |
463 | - } | |
464 | - | |
465 | - public Date getAppealResultTime() { | |
466 | - return appealResultTime; | |
467 | - } | |
468 | - | |
469 | - public void setAppealResultTime(Date appealResultTime) { | |
470 | - this.appealResultTime = appealResultTime; | |
471 | - } | |
472 | - | |
473 | - public Long getAppealResultUserId() { | |
474 | - return appealResultUserId; | |
475 | - } | |
476 | - | |
477 | - public void setAppealResultUserId(Long appealResultUserId) { | |
478 | - this.appealResultUserId = appealResultUserId; | |
479 | - } | |
480 | - | |
481 | - public String getAppealResultUserName() { | |
482 | - return appealResultUserName; | |
483 | - } | |
484 | - | |
485 | - public void setAppealResultUserName(String appealResultUserName) { | |
486 | - this.appealResultUserName = appealResultUserName; | |
487 | - } | |
488 | - | |
489 | - public String getAppealResultImgUrls() { | |
490 | - return appealResultImgUrls; | |
491 | - } | |
492 | - | |
493 | - public void setAppealResultImgUrls(String appealResultImgUrls) { | |
494 | - this.appealResultImgUrls = appealResultImgUrls; | |
495 | - } | |
496 | - | |
497 | - public String getAppealAuditComment() { | |
498 | - return appealAuditComment; | |
499 | - } | |
500 | - | |
501 | - public void setAppealAuditComment(String appealAuditComment) { | |
502 | - this.appealAuditComment = appealAuditComment; | |
503 | - } | |
504 | - | |
505 | - public Date getAppealAuditTime() { | |
506 | - return appealAuditTime; | |
507 | - } | |
508 | - | |
509 | - public void setAppealAuditTime(Date appealAuditTime) { | |
510 | - this.appealAuditTime = appealAuditTime; | |
511 | - } | |
512 | - | |
513 | - public Long getAppealAuditUserId() { | |
514 | - return appealAuditUserId; | |
515 | - } | |
516 | - | |
517 | - public void setAppealAuditUserId(Long appealAuditUserId) { | |
518 | - this.appealAuditUserId = appealAuditUserId; | |
519 | - } | |
520 | - | |
521 | - public String getAppealAuditUserName() { | |
522 | - return appealAuditUserName; | |
523 | - } | |
524 | - | |
525 | - public void setAppealAuditUserName(String appealAuditUserName) { | |
526 | - this.appealAuditUserName = appealAuditUserName; | |
527 | - } | |
528 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/model/LogisticsInfo.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order.model; | |
2 | - | |
3 | -import java.io.Serializable; | |
4 | - | |
5 | -/** | |
6 | - * Created by david on 2016/1/8. | |
7 | - */ | |
8 | -public class LogisticsInfo implements Serializable { | |
9 | - | |
10 | - /** | |
11 | - * 物流订单id | |
12 | - */ | |
13 | - private Long logisticsOrderId; | |
14 | - /** | |
15 | - * 物流订单num | |
16 | - */ | |
17 | - private String logisticsOrderNum; | |
18 | - | |
19 | - /** | |
20 | - * 物流店铺名称 | |
21 | - */ | |
22 | - private String logisticsShopName; | |
23 | - | |
24 | - /** | |
25 | - * 收货人名字 | |
26 | - */ | |
27 | - private String recvierName; | |
28 | - | |
29 | - /** | |
30 | - * 收货人电话 | |
31 | - */ | |
32 | - private String reciverPhone; | |
33 | - | |
34 | - | |
35 | - /** | |
36 | - * 收货人地址 | |
37 | - */ | |
38 | - private String reciverAddress; | |
39 | - | |
40 | - | |
41 | - /** | |
42 | - * 司机姓名 | |
43 | - */ | |
44 | - private String driverName; | |
45 | - /** | |
46 | - * 司机电话 | |
47 | - */ | |
48 | - private String driverPhone; | |
49 | - /** | |
50 | - * 车牌 | |
51 | - */ | |
52 | - private String carNumber; | |
53 | - | |
54 | - | |
55 | - public String getDriverName() { | |
56 | - return driverName; | |
57 | - } | |
58 | - | |
59 | - public void setDriverName(String driverName) { | |
60 | - this.driverName = driverName; | |
61 | - } | |
62 | - | |
63 | - public String getDriverPhone() { | |
64 | - return driverPhone; | |
65 | - } | |
66 | - | |
67 | - public void setDriverPhone(String driverPhone) { | |
68 | - this.driverPhone = driverPhone; | |
69 | - } | |
70 | - | |
71 | - public String getCarNumber() { | |
72 | - return carNumber; | |
73 | - } | |
74 | - | |
75 | - public void setCarNumber(String carNumber) { | |
76 | - this.carNumber = carNumber; | |
77 | - } | |
78 | - | |
79 | - public Long getLogisticsOrderId() { | |
80 | - return logisticsOrderId; | |
81 | - } | |
82 | - | |
83 | - public void setLogisticsOrderId(Long logisticsOrderId) { | |
84 | - this.logisticsOrderId = logisticsOrderId; | |
85 | - } | |
86 | - | |
87 | - public String getLogisticsShopName() { | |
88 | - return logisticsShopName; | |
89 | - } | |
90 | - | |
91 | - public void setLogisticsShopName(String logisticsShopName) { | |
92 | - this.logisticsShopName = logisticsShopName; | |
93 | - } | |
94 | - | |
95 | - public String getRecvierName() { | |
96 | - return recvierName; | |
97 | - } | |
98 | - | |
99 | - public void setRecvierName(String recvierName) { | |
100 | - this.recvierName = recvierName; | |
101 | - } | |
102 | - | |
103 | - public String getReciverPhone() { | |
104 | - return reciverPhone; | |
105 | - } | |
106 | - | |
107 | - public void setReciverPhone(String reciverPhone) { | |
108 | - this.reciverPhone = reciverPhone; | |
109 | - } | |
110 | - | |
111 | - public String getReciverAddress() { | |
112 | - return reciverAddress; | |
113 | - } | |
114 | - | |
115 | - public void setReciverAddress(String reciverAddress) { | |
116 | - this.reciverAddress = reciverAddress; | |
117 | - } | |
118 | - | |
119 | - public String getLogisticsOrderNum() { | |
120 | - return logisticsOrderNum; | |
121 | - } | |
122 | - | |
123 | - public void setLogisticsOrderNum(String logisticsOrderNum) { | |
124 | - this.logisticsOrderNum = logisticsOrderNum; | |
125 | - } | |
126 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/model/PurchaseInfo.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order.model; | |
2 | - | |
3 | -import java.io.Serializable; | |
4 | -import java.util.List; | |
5 | - | |
6 | -/** | |
7 | - * Created by david on 2016/1/8. | |
8 | - */ | |
9 | -public class PurchaseInfo implements Serializable { | |
10 | - | |
11 | - /** | |
12 | - *代购单id | |
13 | - */ | |
14 | - private Long purchaseOrderId; | |
15 | - | |
16 | - /** | |
17 | - * 代购服务类型 | |
18 | - */ | |
19 | - private List<String> purchaseServiceName; | |
20 | - | |
21 | - /** | |
22 | - * 联系人名字 | |
23 | - */ | |
24 | - private String consigeeName; | |
25 | - | |
26 | - /** | |
27 | - * 联系人电话 | |
28 | - */ | |
29 | - private String consigeePhone; | |
30 | - | |
31 | - | |
32 | - public Long getPurchaseOrderId() { | |
33 | - return purchaseOrderId; | |
34 | - } | |
35 | - | |
36 | - public void setPurchaseOrderId(Long purchaseOrderId) { | |
37 | - this.purchaseOrderId = purchaseOrderId; | |
38 | - } | |
39 | - | |
40 | - public List<String> getPurchaseServiceName() { | |
41 | - return purchaseServiceName; | |
42 | - } | |
43 | - | |
44 | - public void setPurchaseServiceName(List<String> purchaseServiceName) { | |
45 | - this.purchaseServiceName = purchaseServiceName; | |
46 | - } | |
47 | - | |
48 | - public String getConsigeeName() { | |
49 | - return consigeeName; | |
50 | - } | |
51 | - | |
52 | - public void setConsigeeName(String consigeeName) { | |
53 | - this.consigeeName = consigeeName; | |
54 | - } | |
55 | - | |
56 | - public String getConsigeePhone() { | |
57 | - return consigeePhone; | |
58 | - } | |
59 | - | |
60 | - public void setConsigeePhone(String consigeePhone) { | |
61 | - this.consigeePhone = consigeePhone; | |
62 | - } | |
63 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/model/RefundAppeal.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order.model; | |
2 | - | |
3 | -import java.io.Serializable; | |
4 | -import java.util.List; | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2015年6月12日 上午11:51:59 | |
12 | - * @author zhangshirui | |
13 | - */ | |
14 | -public class RefundAppeal implements Serializable{ | |
15 | - | |
16 | - /** | |
17 | - * 退款id | |
18 | - */ | |
19 | - private Long refundId; | |
20 | - /** | |
21 | - * 申诉内容 | |
22 | - */ | |
23 | - private String appealContent; | |
24 | - /** | |
25 | - * 处理说明 | |
26 | - */ | |
27 | - private String processComment; | |
28 | - /** | |
29 | - * 申诉凭证 | |
30 | - */ | |
31 | - private List<String> appealImgs; | |
32 | - /** | |
33 | - * 实际申诉退款金额 | |
34 | - */ | |
35 | - private Long realAppealPrice; | |
36 | - | |
37 | - public String getAppealContent() { | |
38 | - return appealContent; | |
39 | - } | |
40 | - public void setAppealContent(String appealContent) { | |
41 | - this.appealContent = appealContent; | |
42 | - } | |
43 | - public List<String> getAppealImgs() { | |
44 | - return appealImgs; | |
45 | - } | |
46 | - public void setAppealImgs(List<String> appealImgs) { | |
47 | - this.appealImgs = appealImgs; | |
48 | - } | |
49 | - public String getProcessComment() { | |
50 | - return processComment; | |
51 | - } | |
52 | - public void setProcessComment(String processComment) { | |
53 | - this.processComment = processComment; | |
54 | - } | |
55 | - public Long getRefundId() { | |
56 | - return refundId; | |
57 | - } | |
58 | - public void setRefundId(Long refundId) { | |
59 | - this.refundId = refundId; | |
60 | - } | |
61 | - public Long getRealAppealPrice() { | |
62 | - return realAppealPrice; | |
63 | - } | |
64 | - public void setRealAppealPrice(Long realAppealPrice) { | |
65 | - this.realAppealPrice = realAppealPrice; | |
66 | - } | |
67 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/order/model/RemitInfo.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.order.model; | |
2 | - | |
3 | -/** | |
4 | - * Created by xxxzzz on 2016/11/23. | |
5 | - */ | |
6 | -public class RemitInfo { | |
7 | - | |
8 | - //收款时间 | |
9 | - private String receiptDate; | |
10 | - //收款金额 (单位:分) | |
11 | - private Long receiptAmount; | |
12 | - //汇款人姓名 | |
13 | - private String remitPersonName; | |
14 | - //汇款人账号或地址 | |
15 | - private String remitPersonInfo; | |
16 | - //汇款凭证URL | |
17 | - private String remitUrl; | |
18 | - //汇款单的审核状态 | |
19 | - private String auditStatus; | |
20 | - | |
21 | - | |
22 | - public String getReceiptDate() { | |
23 | - return receiptDate; | |
24 | - } | |
25 | - | |
26 | - public void setReceiptDate(String receiptDate) { | |
27 | - this.receiptDate = receiptDate; | |
28 | - } | |
29 | - | |
30 | - public Long getReceiptAmount() { | |
31 | - return receiptAmount; | |
32 | - } | |
33 | - | |
34 | - public void setReceiptAmount(Long receiptAmount) { | |
35 | - this.receiptAmount = receiptAmount; | |
36 | - } | |
37 | - | |
38 | - public String getRemitPersonName() { | |
39 | - return remitPersonName; | |
40 | - } | |
41 | - | |
42 | - public void setRemitPersonName(String remitPersonName) { | |
43 | - this.remitPersonName = remitPersonName; | |
44 | - } | |
45 | - | |
46 | - public String getRemitPersonInfo() { | |
47 | - return remitPersonInfo; | |
48 | - } | |
49 | - | |
50 | - public void setRemitPersonInfo(String remitPersonInfo) { | |
51 | - this.remitPersonInfo = remitPersonInfo; | |
52 | - } | |
53 | - | |
54 | - public String getRemitUrl() { | |
55 | - return remitUrl; | |
56 | - } | |
57 | - | |
58 | - public void setRemitUrl(String remitUrl) { | |
59 | - this.remitUrl = remitUrl; | |
60 | - } | |
61 | - | |
62 | - public String getAuditStatus() { | |
63 | - return auditStatus; | |
64 | - } | |
65 | - | |
66 | - public void setAuditStatus(String auditStatus) { | |
67 | - this.auditStatus = auditStatus; | |
68 | - } | |
69 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/saler/order/AgreeShipmentReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.saler.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | - | |
5 | -public class AgreeShipmentReq extends BaseReq { | |
6 | - | |
7 | - /** | |
8 | - *订单id | |
9 | - * */ | |
10 | - private Long orderId; | |
11 | - /** | |
12 | - *货物估重 | |
13 | - * */ | |
14 | - private Double weight; | |
15 | - public Long getOrderId() { | |
16 | - return orderId; | |
17 | - } | |
18 | - public void setOrderId(Long orderId) { | |
19 | - this.orderId = orderId; | |
20 | - } | |
21 | - public Double getWeight() { | |
22 | - return weight; | |
23 | - } | |
24 | - public void setWeight(Double weight) { | |
25 | - this.weight = weight; | |
26 | - } | |
27 | - | |
28 | - | |
29 | - | |
30 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/saler/order/AgreeShipmentResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.saler.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
4 | - | |
5 | -public class AgreeShipmentResp extends BaseResp { | |
6 | - /*** | |
7 | - * 接口响应 | |
8 | - * */ | |
9 | - private Integer resp; | |
10 | - | |
11 | - public Integer getResp() { | |
12 | - return resp; | |
13 | - } | |
14 | - | |
15 | - public void setResp(Integer resp) { | |
16 | - this.resp = resp; | |
17 | - } | |
18 | - | |
19 | - | |
20 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/saler/order/AuditApplyRefundReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.saler.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseReq; | |
4 | - | |
5 | -public class AuditApplyRefundReq extends BaseReq { | |
6 | - | |
7 | - /** | |
8 | - * 退款单id | |
9 | - * */ | |
10 | - private Long reOrderId; | |
11 | - | |
12 | - /** | |
13 | - * 通过true ,拒绝false | |
14 | - * */ | |
15 | - private boolean pass; | |
16 | - | |
17 | - /** | |
18 | - * 审核信息 | |
19 | - * */ | |
20 | - private String auditMsg; | |
21 | - | |
22 | - /** | |
23 | - * 审核通过传,不通过则为空 | |
24 | - * */ | |
25 | - private String auditToken; | |
26 | - | |
27 | - public Long getReOrderId() { | |
28 | - return reOrderId; | |
29 | - } | |
30 | - | |
31 | - public void setReOrderId(Long reOrderId) { | |
32 | - this.reOrderId = reOrderId; | |
33 | - } | |
34 | - | |
35 | - public String getAuditMsg() { | |
36 | - return auditMsg; | |
37 | - } | |
38 | - | |
39 | - public void setAuditMsg(String auditMsg) { | |
40 | - this.auditMsg = auditMsg; | |
41 | - } | |
42 | - | |
43 | - public boolean isPass() { | |
44 | - return pass; | |
45 | - } | |
46 | - | |
47 | - public void setPass(boolean pass) { | |
48 | - this.pass = pass; | |
49 | - } | |
50 | - | |
51 | - public String getAuditToken() { | |
52 | - return auditToken; | |
53 | - } | |
54 | - | |
55 | - public void setAuditToken(String auditToken) { | |
56 | - this.auditToken = auditToken; | |
57 | - } | |
58 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/saler/order/GetSellerRefundDetailResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.saler.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.order.RefundOrderDetail; | |
5 | -import com.diligrp.mobsite.getway.domain.protocol.saler.order.model.SellerRefundOrder; | |
6 | - | |
7 | - | |
8 | -/** | |
9 | - * <B>Description</B> 申请退款订单详情 <br /> | |
10 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
11 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
12 | - * <B>Company</B> 地利集团 | |
13 | - * @createTime 2014年10月21日 下午4:23:07 | |
14 | - * @author duanyugen | |
15 | - */ | |
16 | -@SuppressWarnings("serial") | |
17 | -public class GetSellerRefundDetailResp extends BaseResp { | |
18 | - | |
19 | - /** | |
20 | - * 退款订单详情 | |
21 | - */ | |
22 | - private SellerRefundOrder sellerRefundOrder; | |
23 | - | |
24 | - | |
25 | - public SellerRefundOrder getSellerRefundOrder() { | |
26 | - return sellerRefundOrder; | |
27 | - } | |
28 | - | |
29 | - public void setSellerRefundOrder(SellerRefundOrder sellerRefundOrder) { | |
30 | - this.sellerRefundOrder = sellerRefundOrder; | |
31 | - } | |
32 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/saler/order/GetSellerRefundOrderListReq.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.saler.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.base.BaseListReq; | |
4 | - | |
5 | - | |
6 | -/** | |
7 | - * <B>Description</B> 获取申请退款订单列表 <br /> | |
8 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
9 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
10 | - * <B>Company</B> 地利集团 | |
11 | - * @createTime 2014年10月21日 下午2:34:23 | |
12 | - * @author duanyugen | |
13 | - */ | |
14 | -@SuppressWarnings("serial") | |
15 | -public class GetSellerRefundOrderListReq extends BaseListReq { | |
16 | - /** | |
17 | - * 订单id | |
18 | - */ | |
19 | - private Long orderId; | |
20 | - | |
21 | - /** | |
22 | - * 退款状态:10待审核,20审核通过,30审核不通过,40取消;可选 | |
23 | - */ | |
24 | - private Integer reStatus; | |
25 | - | |
26 | - /** | |
27 | - * 卖家id | |
28 | - */ | |
29 | - private Long sellerId; | |
30 | - | |
31 | - /** | |
32 | - * 订单类型(30商品订单 ,40代购订单) | |
33 | - */ | |
34 | - private Integer orderType; | |
35 | - | |
36 | - public Integer getOrderType() { | |
37 | - return orderType; | |
38 | - } | |
39 | - | |
40 | - | |
41 | - public void setOrderType(Integer orderType) { | |
42 | - this.orderType = orderType; | |
43 | - } | |
44 | - | |
45 | - | |
46 | - public Long getOrderId() { | |
47 | - return orderId; | |
48 | - } | |
49 | - | |
50 | - public void setOrderId(Long orderId) { | |
51 | - this.orderId = orderId; | |
52 | - } | |
53 | - | |
54 | - public Integer getReStatus() { | |
55 | - return reStatus; | |
56 | - } | |
57 | - | |
58 | - public void setReStatus(Integer reStatus) { | |
59 | - this.reStatus = reStatus; | |
60 | - } | |
61 | - | |
62 | - public Long getSellerId() { | |
63 | - return sellerId; | |
64 | - } | |
65 | - | |
66 | - public void setSellerId(Long sellerId) { | |
67 | - this.sellerId = sellerId; | |
68 | - } | |
69 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/saler/order/GetSellerRefundOrderListResp.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.saler.order; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.base.BaseListResp; | |
4 | -import com.diligrp.mobsite.getway.domain.protocol.BaseResp; | |
5 | -import com.diligrp.mobsite.getway.domain.protocol.order.RefundOrder; | |
6 | - | |
7 | -import java.util.List; | |
8 | - | |
9 | - | |
10 | -/** | |
11 | - * <B>Description</B> 获取申请退款订单列表 <br /> | |
12 | - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br /> | |
13 | - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br /> | |
14 | - * <B>Company</B> 地利集团 | |
15 | - * @createTime 2014年10月21日 下午2:35:03 | |
16 | - * @author duanyugen | |
17 | - */ | |
18 | -@SuppressWarnings("serial") | |
19 | -public class GetSellerRefundOrderListResp extends BaseListResp { | |
20 | - | |
21 | - /** | |
22 | - * 申请退款订单列表 | |
23 | - */ | |
24 | - private List<RefundOrder> refundOrder; | |
25 | - | |
26 | - /** | |
27 | - * get value of GetRefundOrderListResp.refundOrder | |
28 | - * @return the refundOrder | |
29 | - * @createTime 2014年10月21日 下午4:17:45 | |
30 | - * @author zhangshirui | |
31 | - */ | |
32 | - public List<RefundOrder> getRefundOrder() { | |
33 | - return refundOrder; | |
34 | - } | |
35 | - | |
36 | - | |
37 | - /** | |
38 | - * set value of GetRefundOrderListResp.refundOrder | |
39 | - * @param refundOrder the refundOrder to set | |
40 | - * @createTime 2014年10月21日 下午4:17:45 | |
41 | - * @author zhangshirui | |
42 | - */ | |
43 | - public void setRefundOrder(List<RefundOrder> refundOrder) { | |
44 | - this.refundOrder = refundOrder; | |
45 | - } | |
46 | -} |
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/saler/order/model/SellerRefundOrder.java deleted
100644 → 0
1 | -package com.diligrp.mobsite.getway.domain.protocol.saler.order.model; | |
2 | - | |
3 | -import com.diligrp.mobsite.getway.domain.protocol.order.RefundOrder; | |
4 | - | |
5 | -import java.util.List; | |
6 | - | |
7 | -/** | |
8 | - * Created by david on 2015/5/12. | |
9 | - */ | |
10 | -public class SellerRefundOrder extends RefundOrder { | |
11 | - | |
12 | - /** | |
13 | - * 支付方式 | |
14 | - * */ | |
15 | - private Integer payType; | |
16 | - | |
17 | - /** | |
18 | - * 支付方式名称 | |
19 | - * */ | |
20 | - private String payTypeName; | |
21 | - | |
22 | - /** | |
23 | - * 买家姓名 | |
24 | - * */ | |
25 | - private String buyerName; | |
26 | - | |
27 | - /** | |
28 | - * 支付编号 | |
29 | - * */ | |
30 | - private String payNo; | |
31 | - | |
32 | - /** | |
33 | - * 订单信息 | |
34 | - * */ | |
35 | - private SellerOrder orderDetail; | |
36 | - | |
37 | - /** | |
38 | - * 状态描述 | |
39 | - */ | |
40 | - private String stateDesc; | |
41 | - | |
42 | - /** | |
43 | - * 退款原因 | |
44 | - */ | |
45 | - private String refundReason; | |
46 | - | |
47 | - /** | |
48 | - * 退款留言(备注) | |
49 | - */ | |
50 | - private String remark; | |
51 | - | |
52 | - /** | |
53 | - * 是否可发起退款申诉,0否,1是 | |
54 | - */ | |
55 | - private Integer appealEnable; | |
56 | - | |
57 | - /** | |
58 | - * 退款申诉内容 | |
59 | - */ | |
60 | - private String appealResaon; | |
61 | - | |
62 | - /** | |
63 | - * 退款申诉凭证 -图片url | |
64 | - */ | |
65 | - private List<String> appealImgUrls; | |
66 | - | |
67 | - /** | |
68 | - * 申诉留言(备注) | |
69 | - */ | |
70 | - private String auditAppealComment; | |
71 | - | |
72 | - /** | |
73 | - * 退款申诉金额 | |
74 | - */ | |
75 | - private Long appealPrice; | |
76 | - | |
77 | - /** | |
78 | - * 退款申诉实际退款金额 | |
79 | - */ | |
80 | - private Long appealRealPrice; | |
81 | - | |
82 | - | |
83 | - public String getStateDesc() { | |
84 | - return stateDesc; | |
85 | - } | |
86 | - | |
87 | - public void setStateDesc(String stateDesc) { | |
88 | - this.stateDesc = stateDesc; | |
89 | - } | |
90 | - | |
91 | - @Override | |
92 | - public Integer getPayType() { | |
93 | - return payType; | |
94 | - } | |
95 | - | |
96 | - @Override | |
97 | - public void setPayType(Integer payType) { | |
98 | - this.payType = payType; | |
99 | - } | |
100 | - | |
101 | - public String getPayTypeName() { | |
102 | - return payTypeName; | |
103 | - } | |
104 | - | |
105 | - public void setPayTypeName(String payTypeName) { | |
106 | - this.payTypeName = payTypeName; | |
107 | - } | |
108 | - | |
109 | - public String getBuyerName() { | |
110 | - return buyerName; | |
111 | - } | |
112 | - | |
113 | - public void setBuyerName(String buyerName) { | |
114 | - this.buyerName = buyerName; | |
115 | - } | |
116 | - | |
117 | - public String getPayNo() { | |
118 | - return payNo; | |
119 | - } | |
120 | - | |
121 | - public void setPayNo(String payNo) { | |
122 | - this.payNo = payNo; | |
123 | - } | |
124 | - | |
125 | - public SellerOrder getOrderDetail() { | |
126 | - return orderDetail; | |
127 | - } | |
128 | - | |
129 | - public void setOrderDetail(SellerOrder orderDetail) { | |
130 | - this.orderDetail = orderDetail; | |
131 | - } | |
132 | - | |
133 | - public String getRefundReason() { | |
134 | - return refundReason; | |
135 | - } | |
136 | - | |
137 | - public void setRefundReason(String refundReason) { | |
138 | - this.refundReason = refundReason; | |
139 | - } | |
140 | - | |
141 | - public String getRemark() { | |
142 | - return remark; | |
143 | - } | |
144 | - | |
145 | - public void setRemark(String remark) { | |
146 | - this.remark = remark; | |
147 | - } | |
148 | - | |
149 | - public Integer getAppealEnable() { | |
150 | - return appealEnable; | |
151 | - } | |
152 | - | |
153 | - public void setAppealEnable(Integer appealEnable) { | |
154 | - this.appealEnable = appealEnable; | |
155 | - } | |
156 | - | |
157 | - public String getAppealResaon() { | |
158 | - return appealResaon; | |
159 | - } | |
160 | - | |
161 | - public void setAppealResaon(String appealResaon) { | |
162 | - this.appealResaon = appealResaon; | |
163 | - } | |
164 | - | |
165 | - public List<String> getAppealImgUrls() { | |
166 | - return appealImgUrls; | |
167 | - } | |
168 | - | |
169 | - public void setAppealImgUrls(List<String> appealImgUrls) { | |
170 | - this.appealImgUrls = appealImgUrls; | |
171 | - } | |
172 | - | |
173 | - public String getAuditAppealComment() { | |
174 | - return auditAppealComment; | |
175 | - } | |
176 | - | |
177 | - public void setAuditAppealComment(String auditAppealComment) { | |
178 | - this.auditAppealComment = auditAppealComment; | |
179 | - } | |
180 | - | |
181 | - public Long getAppealPrice() { | |
182 | - return appealPrice; | |
183 | - } | |
184 | - | |
185 | - public void setAppealPrice(Long appealPrice) { | |
186 | - this.appealPrice = appealPrice; | |
187 | - } | |
188 | - | |
189 | - public Long getAppealRealPrice() { | |
190 | - return appealRealPrice; | |
191 | - } | |
192 | - | |
193 | - public void setAppealRealPrice(Long appealRealPrice) { | |
194 | - this.appealRealPrice = appealRealPrice; | |
195 | - } | |
196 | -} |