管道基础大数据平台系统开发-【后端】-Server
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.lf.server.entity.ctrl;
 
import java.util.List;
import java.util.Map;
 
/**
 * 图层信息
 * @author WWW
 */
public class LayerDto {
    private long count;
 
    private String layerName;
 
    private List<Map> list;
 
    private List<Map<String, String>> map;
 
    public long getCount() {
        return count;
    }
 
    public void setCount(long count) {
        this.count = count;
    }
 
    public String getLayerName() {
        return layerName;
    }
 
    public void setLayerName(String layerName) {
        this.layerName = layerName;
    }
 
    public List<Map> getList() {
        return list;
    }
 
    public void setList(List<Map> list) {
        this.list = list;
    }
 
    public List<Map<String, String>> getMap() {
        return map;
    }
 
    public void setMap(List<Map<String, String>> map) {
        this.map = map;
    }
}