| | |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 访客分析 |
| | |
| | | public class VisitDataVO { |
| | | |
| | | @ApiModelProperty(value = "待访问数量") |
| | | private Integer waitVisitNum; |
| | | private long waitVisitNum; |
| | | |
| | | @ApiModelProperty(value = "待访问占比") |
| | | private BigDecimal waitVisitRata; |
| | | |
| | | @ApiModelProperty(value = "已登记数量") |
| | | private Integer registerVisitNum; |
| | | private long registerVisitNum; |
| | | |
| | | @ApiModelProperty(value = "已登记占比") |
| | | private BigDecimal registerVisitRata; |
| | | |
| | | @ApiModelProperty(value = "已离开数量") |
| | | private Integer levelNum; |
| | | private long levelNum; |
| | | |
| | | @ApiModelProperty(value = "已离开占比") |
| | | private BigDecimal levelRata; |
| | | |
| | | @ApiModelProperty(value = "滞留数量") |
| | | private Integer retentionNum; |
| | | private long retentionNum; |
| | | |
| | | @ApiModelProperty(value = "滞留占比") |
| | | private BigDecimal retentionRata; |
| | | |
| | | |
| | | @ApiModelProperty(value = "访客滞留情况") |
| | | private List<VisitRetentionDataVO> visitRetentionDataList; |
| | | } |