1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.panzhihua.serviceapi.model.dto;
|
| import java.util.ArrayList;
| import java.util.List;
|
| import lombok.Data;
|
| /**
| * program 攀枝花智慧社区项目 description 浪潮接口返回的网格数据接口,网格按照区域层级展开
| *
| * @author manailin Date 2021-06-22 15:30
| **/
| @Data
| public class LcGridData {
|
| private String id;
| private String title;
| private String level;
| private String other;
| private String other4;
| private String name;
| private String open;
| private String checked;
| private String count;
| private String pid;
| private List<LcGridData> children = new ArrayList<>();
| }
|
|