package com.dy.pipIrrGlobal.pojoSe;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.dy.common.po.BaseEntity;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.*;
|
|
import java.util.Date;
|
|
/**
|
* 水卡充值表;
|
*/
|
|
@TableName(value="se_recharge", autoResultMap = true)
|
@Data
|
@Builder
|
@ToString
|
@NoArgsConstructor
|
@AllArgsConstructor
|
@Schema(name = "水卡充值实体")
|
public class SeRecharge implements BaseEntity {
|
|
public static final long serialVersionUID = 20231191728001L;
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
/**
|
* 水卡编号
|
*/
|
private Long cardid;
|
|
/**
|
* 卡片余额
|
*/
|
private Double money;
|
|
/**
|
* 充值金额
|
*/
|
private Double amount;
|
|
/**
|
* 赠送金额
|
*/
|
private Double gift;
|
|
/**
|
* 充值后余额
|
*/
|
private Double afterrecharge;
|
|
/**
|
* 付款方式编号
|
*/
|
private Long paymentid;
|
|
/**
|
* 水价
|
*/
|
private Float price;
|
|
/**
|
* 备注信息
|
*/
|
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 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 getGift() {
|
return gift;
|
}
|
|
public void setGift(Double gift) {
|
this.gift = gift;
|
}
|
|
public Double getAfterrecharge() {
|
return afterrecharge;
|
}
|
|
public void setAfterrecharge(Double afterrecharge) {
|
this.afterrecharge = afterrecharge;
|
}
|
|
public Long getPaymentid() {
|
return paymentid;
|
}
|
|
public void setPaymentid(Long paymentid) {
|
this.paymentid = paymentid;
|
}
|
|
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;
|
}
|
}
|