Helius
2022-05-27 4351e71d782741143a98f86f6648acd16689165f
zq-erp/src/main/java/com/matrix/system/hive/bean/MoneyCardUse.java
@@ -1,5 +1,8 @@
package com.matrix.system.hive.bean;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.anotations.Extend;
import com.matrix.core.tools.DateUtil;
@@ -13,20 +16,32 @@
 *
 * @date 2016-09-17 10:17
 */
public class MoneyCardUse  {
   private static final long serialVersionUID = 1L;
   @TableId(value = "id",type = IdType.AUTO)
   private Long  id;
   private String createBy;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
   private Date createTime;
   private String updateBy;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
   private Date updateTime;
   /**
    * 剩余次数
    */
   @TableField(exist = false)
   String lastCountName;
   /**
    * 数据来源
    */
   @TableField(exist = false)
   String sourceName;
   /*vo对象************/
@@ -98,6 +113,7 @@
   /**
    * 订单ID
    */
   @TableField(exist = false)
   private Long  orderId;
         
   
@@ -117,6 +133,7 @@
   /**
    * 前台输入的退款金额
    */
   @TableField(exist = false)
   private String returnMonery;
   /**
@@ -172,6 +189,38 @@
      return lastCountName;
   }
   public String getCreateBy() {
      return createBy;
   }
   public void setCreateBy(String createBy) {
      this.createBy = createBy;
   }
   public Date getCreateTime() {
      return createTime;
   }
   public void setCreateTime(Date createTime) {
      this.createTime = createTime;
   }
   public String getUpdateBy() {
      return updateBy;
   }
   public void setUpdateBy(String updateBy) {
      this.updateBy = updateBy;
   }
   public Date getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }
   public void setLastCountName(String lastCountName) {
      this.lastCountName = lastCountName;
   }
@@ -212,12 +261,14 @@
   /**
    * 会员信息
    */
   @TableField(exist = false)
   private SysVipInfo vipInfo;
   /**
    * 调整说明
    */
   @Extend
   @TableField(exist = false)
   private String changeRemark;