yujian
2020-06-29 ec60e757d358636dcac1589c44a66f3e276fe58c
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"), 
@@ -31,7 +32,8 @@
      shopOrderDrawBack("商城订单退回", "http://img.flqapp.com/img/tlj/icon_tlj.png"),
      redExchange("红包提现中", "http://img.flqapp.com/resource/msg/icon_hongbao_tixian.png"),
      redExchangePass("红包提现成功", "http://img.flqapp.com/resource/msg/icon_hongbao_tixian.png"),
      redExchangeReject("红包提现失败", "http://img.flqapp.com/resource/msg/icon_hongbao_tixian.png");
      redExchangeReject("红包提现失败", "http://img.flqapp.com/resource/msg/icon_hongbao_tixian.png"),
      redMonthly("月结红包", "http://img.flqapp.com/img/tlj/icon_tlj.png");
      private final String desc;
      private final String picture;
@@ -81,6 +83,8 @@
   @Column(name = "rpd_display")
   private Boolean display;
   private BigDecimal balance;
   public Long getId() {
      return id;
   }
@@ -160,4 +164,12 @@
   public void setDisplay(Boolean display) {
      this.display = display;
   }
   public BigDecimal getBalance() {
      return balance;
   }
   public void setBalance(BigDecimal balance) {
      this.balance = balance;
   }
}