package com.nova.sankuai.domain.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ApiModel(value = "入口流量占比Vo") public class InletFlowProportionVo { @ApiModelProperty(value = "时间") private String tHour; @ApiModelProperty(value = "时间段") private String hHour; @ApiModelProperty(value = "日期") private String hDay; @ApiModelProperty(value = "渠道") private String chName; @ApiModelProperty(value = "入口流量数") private Integer uvSum; @ApiModelProperty(value = "加速包购买数") private Integer pkSum; @ApiModelProperty(value = "加速包购买率") private String pkPropertion; @ApiModelProperty(value = "会员购买数") private Integer vipSum; @ApiModelProperty(value = "会员购买率") private String vipPropertion; }