liurunyu
2023-12-07 884e0626b166f832f49efe089b4d8d6439a04325
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
package com.dy.pipIrrGlobal.pojoSe;
 
import java.util.Date;
 
/**
 * @author ZhuBaoMin
 * @date 2023/12/7 9:06
 * @LastEditTime 2023/12/7 9:06
 * @Description
 */
/**
    * 开卡/补卡历史表
    */
public class SeActiveCardHistory {
    /**
    * 主键
    */
    private Long id;
 
    /**
    * 水卡编号
    */
    private Long cardid;
 
    /**
    * 卡片费用
    */
    private Integer cardcost;
 
    /**
    * 付款方式编号
    */
    private Long paymentid;
 
    /**
    * 补卡金额
    */
    private Double reissueamount;
 
    /**
    * 操作类型;1-开卡,2-补卡
    */
    private Byte operatetype;
 
    /**
    * 备注信息
    */
    private String remarks;
 
    /**
    * 操作人编号
    */
    private Long operator;
 
    /**
    * 操作时间
    */
    private Date operatedt;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getCardid() {
        return cardid;
    }
 
    public void setCardid(Long cardid) {
        this.cardid = cardid;
    }
 
    public Integer getCardcost() {
        return cardcost;
    }
 
    public void setCardcost(Integer cardcost) {
        this.cardcost = cardcost;
    }
 
    public Long getPaymentid() {
        return paymentid;
    }
 
    public void setPaymentid(Long paymentid) {
        this.paymentid = paymentid;
    }
 
    public Double getReissueamount() {
        return reissueamount;
    }
 
    public void setReissueamount(Double reissueamount) {
        this.reissueamount = reissueamount;
    }
 
    public Byte getOperatetype() {
        return operatetype;
    }
 
    public void setOperatetype(Byte operatetype) {
        this.operatetype = operatetype;
    }
 
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
 
    public Long getOperator() {
        return operator;
    }
 
    public void setOperator(Long operator) {
        this.operator = operator;
    }
 
    public Date getOperatedt() {
        return operatedt;
    }
 
    public void setOperatedt(Date operatedt) {
        this.operatedt = operatedt;
    }
}