| | |
| | | import cc.mrbird.febs.common.controller.BaseController; |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import cc.mrbird.febs.common.enumerates.MemberLevelTagDicEnums; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | |
| | | /** |
| | | * 性别 |
| | | */ |
| | | private String sex; |
| | | private Integer sex; |
| | | |
| | | /** |
| | | * 邀请码 |
| | |
| | | @TableField(exist = false) |
| | | private BigDecimal voucherAmount; |
| | | |
| | | /* |
| | | * 内转标识 1:开启 2:关闭 |
| | | */ |
| | | private Integer insideWith; |
| | | |
| | | /** |
| | | * 账号级别 1-会员 2-代理 3-股东 |
| | | */ |
| | | private Integer accountLevel; |
| | | |
| | | /** |
| | | * 伞下数量 |
| | | */ |
| | | private Integer childNodeCnt; |
| | | |
| | | private String skin; |
| | | |
| | | public String getLevelName() { |
| | | if (sex != null) { |
| | | return MemberLevelTagDicEnums.getDesc(sex, level); |
| | | } |
| | | |
| | | return null; |
| | | } |
| | | } |