New file |
| | |
| | | package com.ruoyi.other.vo; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @ApiModel(value="首页用户信息", description="") |
| | | public class Home { |
| | | /** |
| | | * 用户id |
| | | */ |
| | | @ApiModelProperty(value = "用户id") |
| | | private Long userId; |
| | | /** |
| | | * 头像 |
| | | */ |
| | | @ApiModelProperty(value = "头像") |
| | | private String avatar; |
| | | /** |
| | | * 上级 |
| | | */ |
| | | @ApiModelProperty(value = "上级") |
| | | private String parentName; |
| | | /** |
| | | * 绑定店铺 |
| | | */ |
| | | @ApiModelProperty(value = "绑定店铺") |
| | | private String shopName; |
| | | |
| | | /** |
| | | * 普通会员数量 |
| | | */ |
| | | @ApiModelProperty(value = "普通会员数量") |
| | | private Integer ordinaryMemberNum; |
| | | |
| | | /** |
| | | * 黄金会员数量 |
| | | */ |
| | | @ApiModelProperty(value = "黄金会员数量") |
| | | private Integer goldenMemberNum; |
| | | |
| | | /** |
| | | * 钻石会员数量 |
| | | */ |
| | | @ApiModelProperty(value = "钻石会员数量") |
| | | private Integer diamondMemberNum; |
| | | |
| | | /** |
| | | * 代理数量 |
| | | */ |
| | | @ApiModelProperty(value = "代理数量") |
| | | private Integer agentNum; |
| | | |
| | | /** |
| | | * 准代理数量 |
| | | */ |
| | | @ApiModelProperty(value = "准代理数量") |
| | | private Integer proxyNum; |
| | | |
| | | /** |
| | | * 总代理数量 |
| | | */ |
| | | @ApiModelProperty(value = "总代理数量") |
| | | private Integer totalAgentNum; |
| | | |
| | | /** |
| | | * 合伙人数量 |
| | | */ |
| | | @ApiModelProperty(value = "合伙人数量") |
| | | private Integer partnerNum; |
| | | |
| | | /** |
| | | * 营业时间 |
| | | */ |
| | | @ApiModelProperty(value = "营业星期") |
| | | private String businessDate; |
| | | |
| | | /** |
| | | * 评分 |
| | | */ |
| | | @ApiModelProperty(value = "评分") |
| | | private BigDecimal score; |
| | | |
| | | /** |
| | | * 经度 |
| | | */ |
| | | @ApiModelProperty(value = "经度") |
| | | private String longitude; |
| | | |
| | | /** |
| | | * 纬度 |
| | | */ |
| | | @ApiModelProperty(value = "纬度") |
| | | private String latitude; |
| | | |
| | | /** |
| | | * 地址 |
| | | */ |
| | | @ApiModelProperty(value = "地址") |
| | | private String address; |
| | | |
| | | } |