wzy
2021-01-18 f8ac14dfe690ce43e8f2c76d07487bc9794cbcc9
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
package com.matrix.system.hive.pojo;
 
import com.matrix.system.hive.bean.AchieveNew;
import com.matrix.system.hive.bean.SysOrderFlow;
 
import java.util.List;
 
 
public class CzXkVo {
    
    private Long cardId;
    private Long levelId;
 
    private Double bjmoney;
    private Double giftMoney;
    private int jf;
    private String dateTime;
    private Long staffId;
    private Long vipId;
    private List<AchieveNew> achaeveList;
 
    private List<SysOrderFlow> flows;
 
    public List<SysOrderFlow> getFlows() {
        return flows;
    }
 
    public void setFlows(List<SysOrderFlow> flows) {
        this.flows = flows;
    }
 
    public Long getCardId() {
        return cardId;
    }
    public void setCardId(Long cardId) {
        this.cardId = cardId;
    }
    public Long getLevelId() {
        return levelId;
    }
    public void setLevelId(Long levelId) {
        this.levelId = levelId;
    }
    public List<AchieveNew> getAchaeveList() {
        return achaeveList;
    }
    public void setAchaeveList(List<AchieveNew> achaeveList) {
        this.achaeveList = achaeveList;
    }
     
    public Double getBjmoney() {
        return bjmoney;
    }
    public void setBjmoney(Double bjmoney) {
        this.bjmoney = bjmoney;
    }
    public int getJf() {
        return jf;
    }
    public void setJf(int jf) {
        this.jf = jf;
    }
    public String getDateTime() {
        return dateTime;
    }
    public void setDateTime(String dateTime) {
        this.dateTime = dateTime;
    }
    public Long getSuId() {
        return staffId;
    }
    public void setStaffId(Long staffId) {
        this.staffId = staffId;
    }
 
    public Double getGiftMoney() {
        return giftMoney;
    }
 
    public void setGiftMoney(Double giftMoney) {
        this.giftMoney = giftMoney;
    }
 
    public Long getStaffId() {
        return staffId;
    }
 
    public Long getVipId() {
        return vipId;
    }
 
    public void setVipId(Long vipId) {
        this.vipId = vipId;
    }
}