Administrator
2023-12-15 2368b6f47ba2866e860c3476bb227572b94e3896
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
package com.dy.pipIrrGlobal.pojoSe;
 
import java.util.Date;
 
/**
 * @author ZhuBaoMin
 * @date 2023/12/12 9:06
 * @LastEditTime 2023/12/12 9:06
 * @Description
 */
/**
    * 电子钱包充值表
    */
public class SeWalletRecharge {
    /**
    * 主键
    */
    private Long id;
 
    /**
    * 钱包编号
    */
    private Long walletid;
 
    /**
    * 农户编号
    */
    private Long clientid;
 
    /**
    * 钱包余额
    */
    private Double money;
 
    /**
    * 充值金额
    */
    private Double amount;
 
    /**
    * 充值后余额
    */
    private Double afterrecharge;
 
    /**
    * 充值时间
    */
    private Date rechargedt;
 
    /**
    * 备注信息
    */
    private String remarks;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getWalletid() {
        return walletid;
    }
 
    public void setWalletid(Long walletid) {
        this.walletid = walletid;
    }
 
    public Long getClientid() {
        return clientid;
    }
 
    public void setClientid(Long clientid) {
        this.clientid = clientid;
    }
 
    public Double getMoney() {
        return money;
    }
 
    public void setMoney(Double money) {
        this.money = money;
    }
 
    public Double getAmount() {
        return amount;
    }
 
    public void setAmount(Double amount) {
        this.amount = amount;
    }
 
    public Double getAfterrecharge() {
        return afterrecharge;
    }
 
    public void setAfterrecharge(Double afterrecharge) {
        this.afterrecharge = afterrecharge;
    }
 
    public Date getRechargedt() {
        return rechargedt;
    }
 
    public void setRechargedt(Date rechargedt) {
        this.rechargedt = rechargedt;
    }
 
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
}