| | |
| | | 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; |
| | |
| | | @ApiModelProperty(value = "余额") |
| | | private BigDecimal balance; |
| | | |
| | | @ApiModelProperty(value = "代理等级") |
| | | @ApiModelProperty(value = "会员等级") |
| | | private String levelName; |
| | | |
| | | @ApiModelProperty(value = "推荐人昵称") |
| | | 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 BigDecimal totalCost; |
| | | |
| | | @ApiModelProperty(value = "赠送积分") |
| | | @ApiModelProperty(value = "会员经验") |
| | | private BigDecimal score; |
| | | |
| | | @ApiModelProperty(value = "抽奖积分") |
| | |
| | | |
| | | @ApiModelProperty(value = "是否是推销员") |
| | | private Integer isSale; |
| | | |
| | | @ApiModelProperty(value = "会员信息") |
| | | private MallVipConfig vipInfo; |
| | | |
| | | @ApiModelProperty(value = "是否是医生") |
| | | private Integer doctorState; |
| | | |
| | | @ApiModelProperty(value = "是否是核销员 0-否 1-是") |
| | | private Integer checkOrder; |
| | | } |