puhanshu
2021-12-21 5191b8131ddb5e4aa095e3b0433e5a04d42fa295
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.panzhihua.common.model.vos.community.bigscreen;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * @author zzj
 */
@Data
public class BigScreenGridStaticsReturn {
    private Integer count;
    private Integer num;
    private Integer percent;
    private String title;
    private List<BigScreenGridStaticsReturn> bigScreenGridStaticsReturnList;
}