puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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
package com.stylefeng.guns.modular.system.controller.resp;
 
import com.stylefeng.guns.modular.system.model.TAppUser;
import com.stylefeng.guns.modular.system.model.TOrder;
import io.swagger.annotations.ApiModelProperty;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class TAppUserResp extends TAppUser {
 
    @ApiModelProperty(value = "优惠券总数")
    private Integer couponSum;
 
    @ApiModelProperty(value = "剩余优惠券")
    private  Integer notUsedCount;
 
    @ApiModelProperty(value = "消费次数")
    private  Integer consumeSum;
 
    @ApiModelProperty(value = "历史消费")
    private BigDecimal consumePrice;
 
    @ApiModelProperty(value = "最后一次消费时间")
    private Date lastConsumptionTime;
 
    public Date getLastConsumptionTime() {
        return lastConsumptionTime;
    }
 
    public void setLastConsumptionTime(Date lastConsumptionTime) {
        this.lastConsumptionTime = lastConsumptionTime;
    }
 
    public Integer getCouponSum() {
        return couponSum;
    }
 
    public void setCouponSum(Integer couponSum) {
        this.couponSum = couponSum;
    }
 
    public Integer getNotUsedCount() {
        return notUsedCount;
    }
 
    public void setNotUsedCount(Integer notUsedCount) {
        this.notUsedCount = notUsedCount;
    }
 
    public Integer getConsumeSum() {
        return consumeSum;
    }
 
    public void setConsumeSum(Integer consumeSum) {
        this.consumeSum = consumeSum;
    }
 
    public BigDecimal getConsumePrice() {
        return consumePrice;
    }
 
    public void setConsumePrice(BigDecimal consumePrice) {
        this.consumePrice = consumePrice;
    }
}