罗元桥
2021-09-27 5f349fe34e3e33625f8593ec1b616f0c4528a12c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.panzhihua.common.model.vos.community.screen.event;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("大屏事件左边统计返回参数")
public class EventLeftStatisticsVO {
 
    @ApiModelProperty("大屏事件左上统计返回参数")
    private EventLeftTopStatisticsVO leftTopStatisticsVO;
 
    @ApiModelProperty("大屏事件左下统计返回参数")
    private EventLeftDownStatisticsVO leftDownStatisticsVO;
 
}