Helius
2020-12-27 8eda088db63ff198cbcd51bf0599531ed006cb84
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package com.matrix.system.hive.pojo;
 
/**
 * 退款订单数据传输对象
 */
public class RefundOrderItemVo {
    /**
     * 家居产品退款
     */
    public static final Integer REFUND_TYPE_GOODS =1;
 
    /**
     * 项目退款
     */
    public static final Integer REFUND_TYPE_PROJECT =2;
    /**
     * 卡项退款
     */
    public static final Integer REFUND_TYPE_CARD =3;
 
 
    /**
     * 退回卡项id
     */
    private Long cardId;
    /**
     * 原订单id
     */
    private Long orderId;
    /**
     * 原订单明细id
     */
    private Long orderItemId;
    /**
     * 业务主键id,如果是家居产品则是家居产品id,项目则是使用情况id,卡项则是卡项使用情况id
     */
    private Long busId;
 
    /**
     * 退款商品名称
     */
    private String goodsName;
    /**
     * 商品id
     */
    private Long goodsId;
    /**
     * 原单价
     */
    private Double price ;
    /**
     * 退货数量
     */
    private Integer count;
    /**
     * 最大退货数
     */
    private Integer maxCount;
 
    /**
     * 退款单价
     */
    private Double zkPrice;
    /**
     * 退回卡项的名称
     */
    private String cardName;
 
    /**
     * 退款类型
     */
    private Integer refundType;
    /**
     * 卡项退款金额
     */
    private Double cardPay=0D;
    /**
     * 现金退款金额
     */
    private Double cashPay=0D;
 
    /**
     * ids接收页面传回的需要退款的项目ids
     */
    private String ids;
 
    public String getIds() {
        return ids;
    }
 
    public void setIds(String ids) {
        this.ids = ids;
    }
 
    public Long getCardId() {
        return cardId;
    }
 
    public void setCardId(Long cardId) {
        this.cardId = cardId;
    }
 
    public Long getOrderItemId() {
        return orderItemId;
    }
 
    public void setOrderItemId(Long orderItemId) {
        this.orderItemId = orderItemId;
    }
 
    public Long getBusId() {
        return busId;
    }
 
    public void setBusId(Long busId) {
        this.busId = busId;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    public Double getPrice() {
        return price;
    }
 
    public void setPrice(Double price) {
        this.price = price;
    }
 
    public Integer getCount() {
        return count;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
    public Double getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(Double zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public String getCardName() {
        return cardName;
    }
 
    public void setCardName(String cardName) {
        this.cardName = cardName;
    }
 
    public Integer getRefundType() {
        return refundType;
    }
 
    public void setRefundType(Integer refundType) {
        this.refundType = refundType;
    }
 
    public Double getCardPay() {
        return cardPay;
    }
 
    public void setCardPay(Double cardPay) {
        if(cardPay==null){
            cardPay=0D;
        }
        this.cardPay = cardPay;
    }
 
    public Double getCashPay() {
        return cashPay;
    }
 
    public void setCashPay(Double cashPay) {
        this.cashPay = cashPay;
    }
 
    public Long getOrderId() {
        return orderId;
    }
 
    public void setOrderId(Long orderId) {
        this.orderId = orderId;
    }
 
    public Long getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
 
    public Integer getMaxCount() {
        return maxCount;
    }
 
    public void setMaxCount(Integer maxCount) {
        this.maxCount = maxCount;
    }
}