| | |
| | | package cc.mrbird.febs.mall.entity; |
| | | |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | |
| | | private Long rtMemberId; |
| | | |
| | | /** |
| | | * 提现状态 1-提现中2-成功 3-拒绝 |
| | | * 提现状态 1-进行中2-成功 3-拒绝 |
| | | */ |
| | | private Integer status; |
| | | |
| | |
| | | * 流水类型 1-余额 2-赠送积分 3-竞猜积分 4-佣金 |
| | | */ |
| | | private Integer flowType; |
| | | |
| | | @TableField(exist = false) |
| | | private String name; |
| | | |
| | | @TableField(exist = false) |
| | | private String accountLogin; |
| | | |
| | | @TableField(exist = false) |
| | | private String phone; |
| | | } |