管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-06-21 5060609a990e0e57301fd4c579e104ab55eb586a
1
已修改1个文件
23 ■■■■■ 文件已修改
src/main/java/com/lf/server/entity/ctrl/PubEntity.java 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/lf/server/entity/ctrl/PubEntity.java
@@ -1,7 +1,5 @@
package com.lf.server.entity.ctrl;
import io.swagger.models.auth.In;
import java.util.List;
/**
@@ -10,6 +8,7 @@
 */
public class PubEntity {
    public PubEntity() {
        srid = 4326;
    }
    private String type;
@@ -33,6 +32,10 @@
    private List<String> ids;
    private List<Integer> models;
    private Integer srid;
    private Double z;
    public String getType() {
        return type;
@@ -121,4 +124,20 @@
    public void setModels(List<Integer> models) {
        this.models = models;
    }
    public Integer getSrid() {
        return srid;
    }
    public void setSrid(Integer srid) {
        this.srid = srid;
    }
    public Double getZ() {
        return z;
    }
    public void setZ(Double z) {
        this.z = z;
    }
}