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 ChannelProportionVo { @ApiModelProperty(value = "时间") private String tHour; @ApiModelProperty(value = "时间段") private String hHour; @ApiModelProperty(value = "日期") private String hDay; @ApiModelProperty(value = "渠道") private String chName; @ApiModelProperty(value = "uv数") private Integer uvSum; @ApiModelProperty(value = "加速包购买数") private Integer pkSum; @ApiModelProperty(value = "加速包购买率") private String pkPropertion; @ApiModelProperty(value = "会员购买数") private Integer vipSum; @ApiModelProperty(value = "会员购买率") private String vipPropertion; }