935090232@qq.com
2021-11-21 59634aeabb04aae0e819bd4c5fe909bb9cdbeb28
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package com.matrix.system.hive.bean;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.anotations.Extend;
import com.matrix.core.tools.DateUtil;
import com.matrix.system.constance.Dictionary;
import com.matrix.system.hive.plugin.util.MoneyUtil;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 *
 * @date 2016-09-17 10:17
 */
 
public class MoneyCardUse  {
 
    @TableId(value = "id",type = IdType.AUTO)
    private Long  id;
 
 
    private String createBy;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    private String updateBy;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date updateTime;
 
    /**
     * 剩余次数
     */
    @TableField(exist = false)
    String lastCountName;
    /**
     * 数据来源
     */
    @TableField(exist = false)
    String sourceName;
 
    /*vo对象************/
 
    /**
     * 剩余次数
     */
 
    private Integer  lastCount;
 
    /**
     * 来源,购买,转让,赠送
     */
    private String  source;
    /**
     * 是会籍卡? Y 是,N否
     */
    private String  isVipCar;
 
    /**
     * 订单明细id
     */
    private Long  orderItemId;
            
    
    /**
     * 总次数
     */
    private Integer  useTotal;
            
    
 
    
    /**
     * 本金
     */
    private Double  realMoney;
            
    
    /**
     * 赠送金额
     */
    private Double  giftMoney;
            
    
    /**
     * 状态,有效,无效,转让,冻结,退款
     */
    private String  status;
            
    
 
            
    
    /**
     * 失效时间
     */
    @JsonFormat(pattern = DateUtil.DATE_FORMAT_DD, timezone = "GMT+8")
    @DateTimeFormat(pattern= DateUtil.DATE_FORMAT_DD)
    private Date  failTime;
 
 
    
    /**
     * 充值卡的id
     */
    private Long  goodsId;
 
    /**
     * 订单ID
     */
    @TableField(exist = false)
    private Long  orderId;
            
    
    private Long  vipId;
            
    
    /**
     * 是使用完成? Y完成,N未完成
     */
    private String  isOver;
            
 
    /**
     * 备注
     */
    private String remark;
    /**
     * 前台输入的退款金额
     */
    @TableField(exist = false)
    private String returnMonery;
 
    /**
     * 充值卡名称
     */
    private String cardName;
 
    public Long getOrderId() {
        return orderId;
    }
 
    public void setOrderId(Long orderId) {
        this.orderId = orderId;
    }
 
    public String getCardName() {
        return cardName;
    }
 
    public void setCardName(String cardName) {
        this.cardName = cardName;
    }
 
    public String getReturnMonery() {
        return returnMonery;
    }
 
    public void setReturnMonery(String returnMonery) {
        this.returnMonery = returnMonery;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    /**
     * 当大于10000时使用次数为不限,或者为会籍卡时
     * @return
     */
    public String getLastCountName() {
        if(getLastCount()==null){
            return "";
        }
        if(Dictionary.FLAG_YES.equals(getIsVipCar())||getLastCount()>Dictionary.MAX_USE_COUNT_SIGN){
            lastCountName=Dictionary.MAX_USE_STRING;
        }else{
            lastCountName=getLastCount().toString();
        }
        return lastCountName;
    }
 
    public String getCreateBy() {
        return createBy;
    }
 
    public void setCreateBy(String createBy) {
        this.createBy = createBy;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getUpdateBy() {
        return updateBy;
    }
 
    public void setUpdateBy(String updateBy) {
        this.updateBy = updateBy;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public void setLastCountName(String lastCountName) {
        this.lastCountName = lastCountName;
    }
 
    public String getSourceName() {
        if(getSource()==null){
            return "";
        }
        if(getSource().contains(Dictionary.TAOCAN_SOURCE_ZS)){
            sourceName=Dictionary.FLAG_YES;
        }else{
            sourceName=Dictionary.FLAG_NO;;
        }
        return sourceName;
    }
 
    public void setSourceName(String sourceName) {
        this.sourceName = sourceName;
    }
 
 
    public String getIsVipCar() {
        return isVipCar;
    }
 
    public void setIsVipCar(String isVipCar) {
        this.isVipCar = isVipCar;
    }
 
 
 
 
    /**
     * 扩展对象
     */
 
    
    /**
     * 会员信息
     */
    @TableField(exist = false)
    private SysVipInfo vipInfo;
 
    /**
     * 调整说明
     */
    @Extend
    @TableField(exist = false)
    private String changeRemark;
 
 
    public String getChangeRemark() {
        return changeRemark;
    }
 
    public void setChangeRemark(String changeRemark) {
        this.changeRemark = changeRemark;
    }
 
 
    public Long getId() {
        return id;
    }
 
       public void setId(Long id) {
        this.id=id;
    }
 
 
    public Long getOrderItemId() {
        return orderItemId;
    }
 
       public void setOrderItemId(Long orderItemId) {
        this.orderItemId=orderItemId;
    }
 
 
    public Integer getUseTotal() {
        return useTotal;
    }
 
       public void setUseTotal(Integer useTotal) {
        this.useTotal=useTotal;
    }
 
 
    public Integer getLastCount() {
        return lastCount;
    }
 
       public void setLastCount(Integer lastCount) {
        this.lastCount=lastCount;
    }
 
 
    public Double getRealMoney() {
        return realMoney;
    }
 
       public void setRealMoney(Double realMoney) {
        this.realMoney=realMoney;
    }
 
 
    public Double getGiftMoney() {
        return giftMoney;
    }
 
       public void setGiftMoney(Double giftMoney) {
        this.giftMoney=giftMoney;
    }
 
 
    public String getStatus() {
        return status;
    }
 
       public void setStatus(String status) {
        this.status=status;
    }
 
 
    public String getSource() {
        return source;
    }
 
       public void setSource(String source) {
        this.source=source;
    }
 
 
    public Date getFailTime() {
        return failTime;
    }
 
       public void setFailTime(Date failTime) {
        this.failTime=failTime;
    }
 
 
    public Long getGoodsId() {
        return goodsId;
    }
 
       public void setGoodsId(Long goodsId) {
        this.goodsId=goodsId;
    }
 
 
    public Long getVipId() {
        return vipId;
    }
 
       public void setVipId(Long vipId) {
        this.vipId=vipId;
    }
 
 
    public String getIsOver() {
        return isOver;
    }
 
       public void setIsOver(String isOver) {
        this.isOver=isOver;
    }
 
    public SysVipInfo getVipInfo() {
        return vipInfo;
    }
 
    public void setVipInfo(SysVipInfo vipInfo) {
        this.vipInfo = vipInfo;
    }
    /**
     * 余额
     */
    public Double getMoney(){
        return MoneyUtil.add(realMoney,giftMoney);
    }
 
 
 
}