yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/entity/elme/ElmeOrder.java
@@ -55,7 +55,22 @@
   private Date createTime;
   @Column(name = "eo_update_time")
   private Date updateTime;
   @Column(name = "eo_state")
   private Integer state;//0-失效  1-有效
   public Integer getState() {
      return state;
   }
   public void setState(Integer state) {
      this.state = state;
   }
   private Long uid;
   private BigDecimal hongbao;
   private Integer hbState;
   public Long getId() {
      return id;
   }
@@ -200,4 +215,27 @@
      this.updateTime = updateTime;
   }
   public Long getUid() {
      return uid;
   }
   public void setUid(Long uid) {
      this.uid = uid;
   }
   public BigDecimal getHongbao() {
      return hongbao;
   }
   public void setHongbao(BigDecimal hongbao) {
      this.hongbao = hongbao;
   }
   public Integer getHbState() {
      return hbState;
   }
   public void setHbState(Integer hbState) {
      this.hbState = hbState;
   }
}