| | |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import cc.mrbird.febs.common.enumerates.MemberLevelTagDicEnums; |
| | | import cc.mrbird.febs.mall.excel.LevelConverter; |
| | | import cc.mrbird.febs.mall.excel.SexConverter; |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | |
| | | * @date 2021-09-16 |
| | | **/ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @TableName("mall_member") |
| | | public class MallMember extends BaseEntity { |
| | | |
| | | /** |
| | | * 姓名 |
| | | */ |
| | | @ExcelProperty(value = "姓名") |
| | | private String name; |
| | | |
| | | /** |
| | | * 手机号 |
| | | */ |
| | | @ExcelProperty(value = "手机号") |
| | | private String phone; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 性别 |
| | | */ |
| | | @ExcelProperty(value = "性别", converter = SexConverter.class) |
| | | private Integer sex; |
| | | |
| | | /** |
| | | * 邀请码 |
| | | */ |
| | | @ExcelProperty(value = "邀请码") |
| | | private String inviteId; |
| | | |
| | | /** |
| | | * 父级邀请码 |
| | | */ |
| | | @ExcelProperty(value = "父级邀请码") |
| | | private String referrerId; |
| | | |
| | | @ExcelProperty(value = "父级名称") |
| | | @TableField(exist = false) |
| | | private String referrerName; |
| | | |
| | | /** |
| | | * 邀请码链 |
| | |
| | | /** |
| | | * 代理级别 |
| | | */ |
| | | @ExcelProperty(value = "会员级别", converter = LevelConverter.class) |
| | | private String level; |
| | | |
| | | /** |
| | |
| | | private String account; |
| | | |
| | | private String bindPhone; |
| | | |
| | | @TableField(exist = false) |
| | | private String referrerName; |
| | | |
| | | @TableField(exist = false) |
| | | private BigDecimal balance; |