Air
2024-11-04 2016903d06e308f44b9463fcd4029850ababf152
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.nova.sankuai.domain.vo.channel;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2021/12/30
 */
@Data
@ApiModel(value = "渠道下载日志统计Vo")
public class ChannelDownloadCountVo {
 
    @ApiModelProperty(value = "渠道id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "下载数量")
    private Integer count;
}