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