| | |
| | | package cc.mrbird.febs.mall.vo; |
| | | |
| | | import cc.mrbird.febs.vip.entity.MallVipConfig; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @ApiModelProperty(value = "是否是团长 1: 是 2:否") |
| | | private Integer isTeamLeader; |
| | | |
| | | @ApiModelProperty(value = "会员等级") |
| | | private Integer director; |
| | | |
| | | @ApiModelProperty(value = "分销等级") |
| | | private Integer storeMaster; |
| | | |
| | | @ApiModelProperty(value = "是否是代理 1: 申请中 2:是 3:否") |
| | | private Integer isAgent; |
| | | |