admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
fanli/src/main/java/com/yeshi/fanli/entity/redpack/RedPackDetail.java
@@ -18,7 +18,8 @@
public class RedPackDetail {
   public enum RedPackDetailTypeEnum {
      refund("红包退回", "http://img.flqapp.com/img/tlj/icon_tlj.png"),
      violation("红包涉嫌违规", "http://img.flqapp.com/img/tlj/icon_tlj.png"),
      deduct("红包涉嫌违规", "http://img.flqapp.com/img/tlj/icon_tlj.png"),
      forbid("涉嫌恶意机刷红包", "http://img.flqapp.com/img/tlj/icon_tlj.png"),
      newUserReward("新人奖励", "http://img.flqapp.com/img/tlj/icon_tlj.png"), 
      invite("立得现金", "http://img.flqapp.com/img/tlj/icon_tlj.png"), 
      increaseReward("递增奖励", "http://img.flqapp.com/img/tlj/icon_tlj.png"), 
@@ -81,6 +82,8 @@
   @Column(name = "rpd_display")
   private Boolean display;
   private BigDecimal balance;
   public Long getId() {
      return id;
   }
@@ -160,4 +163,12 @@
   public void setDisplay(Boolean display) {
      this.display = display;
   }
   public BigDecimal getBalance() {
      return balance;
   }
   public void setBalance(BigDecimal balance) {
      this.balance = balance;
   }
}