|  |  |  | 
|---|
|  |  |  | package cc.mrbird.febs.mall.vo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import cc.mrbird.febs.vip.entity.MallVipConfig; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.math.BigDecimal; | 
|---|
|  |  |  | import java.util.Date; | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "是否是代理 1: 申请中 2:是 3:否") | 
|---|
|  |  |  | private Integer isAgent; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "代理名称") | 
|---|
|  |  |  | private String agentLevelName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "代理等级数字  1:一级 2:二级 3:三级") | 
|---|
|  |  |  | private Integer agentLevel; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "收藏数量") | 
|---|
|  |  |  | private Integer collectionCnt; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "足迹数量") | 
|---|
|  |  |  | private Integer footprintCnt; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "足迹数量") | 
|---|
|  |  |  | private Integer childCnt; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "是否是推销员") | 
|---|
|  |  |  | private Integer isSale; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会员信息") | 
|---|
|  |  |  | private MallVipConfig vipInfo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "生日") | 
|---|
|  |  |  | @DateTimeFormat(pattern = "yyyy-MM-dd") | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") | 
|---|
|  |  |  | private Date birthday; | 
|---|
|  |  |  | } | 
|---|