| | |
| | | package cc.mrbird.febs.mall.vo; |
| | | |
| | | import cc.mrbird.febs.common.enumerates.MemberLevelTagDicEnums; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | private String email; |
| | | |
| | | @ApiModelProperty(value = "性别") |
| | | private String sex; |
| | | private Integer sex; |
| | | |
| | | @ApiModelProperty(value = "邀请码") |
| | | private String inviteId; |
| | |
| | | @ApiModelProperty(value = "内转标识 1:开启 2:关闭") |
| | | private Integer insideWith; |
| | | |
| | | public String getLevelName() { |
| | | if (sex != null) { |
| | | return MemberLevelTagDicEnums.getDesc(sex, level); |
| | | } |
| | | |
| | | return null; |
| | | } |
| | | } |