11
13693261870
2024-11-11 138b959cc11dc9a73b0c766030b99ba1180d8650
src/main/java/com/se/simu/domain/dto/GeLayer.java
@@ -6,12 +6,7 @@
import java.util.List;
/**
 * GEDB图层实体类
 *
 * @author WWW
 * @date 2024-09-13
 */
@SuppressWarnings("ALL")
public class GeLayer {
    private String id;
@@ -37,6 +32,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;