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 list; private List> 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 getList() { return list; } public void setList(List list) { this.list = list; } public List> getMap() { return map; } public void setMap(List> map) { this.map = map; } }