13693261870
2024-09-26 522eec01c681024740c4a584b4d57286832ee726
src/main/java/com/se/simu/domain/dto/GeLayer.java
@@ -37,6 +37,16 @@
        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;