| | |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * GEDB图层实体类 |
| | | * |
| | | * @author WWW |
| | | * @date 2024-09-13 |
| | | */ |
| | | @SuppressWarnings("ALL") |
| | | public class GeLayer { |
| | | private String id; |
| | | |
| | |
| | | this.name = name; |
| | | } |
| | | |
| | | public GeLayer(GeLayer layer,JSONArray data) { |
| | | this.id = layer.getId(); |
| | | this.name = layer.getName(); |
| | | this.queryType = layer.getQueryType(); |
| | | this.fields = layer.getFields(); |
| | | this.shpName = layer.getShpName(); |
| | | this.db = layer.getDb(); |
| | | this.data = data; |
| | | } |
| | | |
| | | public GeLayer(String id, String name, String queryType, List<GeField> fields, String shpName, GeDb db) { |
| | | this(); |
| | | this.id = id; |