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 SeClientCard {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
/**
|
* 水卡地址
|
*/
|
private String cardaddr;
|
|
/**
|
* 农户ID
|
*/
|
private Long clientid;
|
|
/**
|
* 余额
|
*/
|
private Double money;
|
|
/**
|
* 卡片状态;1-正常,2-已注销,3-已挂失
|
*/
|
private Byte state;
|
|
/**
|
* 开卡时间
|
*/
|
private Date createdt;
|
|
/**
|
* 补卡时间
|
*/
|
private Date replacedt;
|
|
/**
|
* 充值时间
|
*/
|
private Date rechargedt;
|
|
/**
|
* 挂失时间
|
*/
|
private Date lossdtdt;
|
|
/**
|
* 注销时间
|
*/
|
private Date canceldt;
|
|
/**
|
* 解锁时间
|
*/
|
private Date unlockdt;
|
|
/**
|
* 冲正时间
|
*/
|
private Date reversaldt;
|
|
/**
|
* 消费时间
|
*/
|
private Date consumedt;
|
|
/**
|
* 最后操作类型;1-开卡,2-补卡,3-充值,4-挂失,5-注销,6-解锁,7-冲正,8-消费
|
*/
|
private Byte lastoper;
|
|
/**
|
* 备注信息
|
*/
|
private String remarks;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getCardaddr() {
|
return cardaddr;
|
}
|
|
public void setCardaddr(String cardaddr) {
|
this.cardaddr = cardaddr;
|
}
|
|
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 Byte getState() {
|
return state;
|
}
|
|
public void setState(Byte state) {
|
this.state = state;
|
}
|
|
public Date getCreatedt() {
|
return createdt;
|
}
|
|
public void setCreatedt(Date createdt) {
|
this.createdt = createdt;
|
}
|
|
public Date getReplacedt() {
|
return replacedt;
|
}
|
|
public void setReplacedt(Date replacedt) {
|
this.replacedt = replacedt;
|
}
|
|
public Date getRechargedt() {
|
return rechargedt;
|
}
|
|
public void setRechargedt(Date rechargedt) {
|
this.rechargedt = rechargedt;
|
}
|
|
public Date getLossdtdt() {
|
return lossdtdt;
|
}
|
|
public void setLossdtdt(Date lossdtdt) {
|
this.lossdtdt = lossdtdt;
|
}
|
|
public Date getCanceldt() {
|
return canceldt;
|
}
|
|
public void setCanceldt(Date canceldt) {
|
this.canceldt = canceldt;
|
}
|
|
public Date getUnlockdt() {
|
return unlockdt;
|
}
|
|
public void setUnlockdt(Date unlockdt) {
|
this.unlockdt = unlockdt;
|
}
|
|
public Date getReversaldt() {
|
return reversaldt;
|
}
|
|
public void setReversaldt(Date reversaldt) {
|
this.reversaldt = reversaldt;
|
}
|
|
public Date getConsumedt() {
|
return consumedt;
|
}
|
|
public void setConsumedt(Date consumedt) {
|
this.consumedt = consumedt;
|
}
|
|
public Byte getLastoper() {
|
return lastoper;
|
}
|
|
public void setLastoper(Byte lastoper) {
|
this.lastoper = lastoper;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
}
|