| | |
| | | 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"),
|
| | |
| | | @Column(name = "rpd_display")
|
| | | private Boolean display;
|
| | |
|
| | | private BigDecimal balance;
|
| | | |
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
| | | public void setDisplay(Boolean display) {
|
| | | this.display = display;
|
| | | }
|
| | |
|
| | | public BigDecimal getBalance() {
|
| | | return balance;
|
| | | }
|
| | |
|
| | | public void setBalance(BigDecimal balance) {
|
| | | this.balance = balance;
|
| | | }
|
| | | }
|