| | |
| | | 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; |
| | |
| | | private String referrerName; |
| | | |
| | | private String level; |
| | | |
| | | private Integer levelCnt; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createdTime; |
| | |
| | | |
| | | @ApiModelProperty(value = "是否是推销员") |
| | | private Integer isSale; |
| | | |
| | | @ApiModelProperty(value = "会员信息") |
| | | private MallVipConfig vipInfo; |
| | | } |