| | |
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | public enum ExchangeTypeEnum {
|
| | | freeCouponBuy("自购免单券"), freeCouponGive("赠送免单券"), rebateCoupon("返利奖励券"), inviteCodeActivate("邀请码激活卡"),
|
| | | freeCouponBuy("自购免单券"), freeCouponGive("赠送免单券"), rebatePercentCoupon("返利奖励券"), inviteCodeActivate("邀请码激活卡"),
|
| | | inviteCodePublish("邀请码发布卡"), taoLiJin("推广红包"), cash("现金红包");
|
| | | private final String desc;
|
| | |
|
| | |
| | |
|
| | | @Column(name = "ex_update_time")
|
| | | private Date updateTime;
|
| | | |
| | | // 用户金币
|
| | | @Expose
|
| | | private String userGoldCoin;
|
| | | |
| | | // 发布列表-需要跳转
|
| | | @Expose
|
| | | private boolean needJump;
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | |
| | | public void setProgress(String progress) {
|
| | | this.progress = progress;
|
| | | }
|
| | |
|
| | | public String getUserGoldCoin() {
|
| | | return userGoldCoin;
|
| | | }
|
| | |
|
| | | public void setUserGoldCoin(String userGoldCoin) {
|
| | | this.userGoldCoin = userGoldCoin;
|
| | | }
|
| | |
|
| | | public boolean isNeedJump() {
|
| | | return needJump;
|
| | | }
|
| | |
|
| | | public void setNeedJump(boolean needJump) {
|
| | | this.needJump = needJump;
|
| | | }
|
| | | }
|