yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/ExtractWeiXinRecord.java
@@ -16,6 +16,9 @@
@Table("yeshi_ec_extract_weixin_record")
public class  ExtractWeiXinRecord {
   public static int TYPE_MANUAL = 1;// 手动
   public static int TYPE_AUTO = 2; // 自动
   public static String SENDING = "SENDING";// 发放中 
   public static String SENT = "SENT"; // 已发放待领取 
   public static String FAILED = "FAILED"; // 发放失败 
@@ -75,6 +78,10 @@
   @Column(name = "aer_total_num")
   private Integer totalNum;
   
   // 发送方式:1手动 2自动
   @Column(name = "aer_type")
   private Integer type;
   @Column(name = "aer_create_time")
   private Date createTime;
   
@@ -202,5 +209,13 @@
   public void setTotalNum(Integer totalNum) {
      this.totalNum = totalNum;
   }
   public Integer getType() {
      return type;
   }
   public void setType(Integer type) {
      this.type = type;
   }
}