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