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;
|
}
|
}
|