月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-11 fee67ca8a0760315047a52fc4101a8f4f80b7a7f
src/main/java/com/moon/server/entity/show/PipelineEntity.java
@@ -6,62 +6,30 @@
import java.io.Serializable;
import java.util.List;
/**
 * 管道分析实体类
 *
 * @author xingjinshuang@smartearth.cn
 * @date 2022/12/26
 */
@SuppressWarnings("ALL")
public class PipelineEntity implements Serializable {
    private static final long serialVersionUID = 1L;
    /**
     * 表名
     */
    @JSONField(serialize = false)
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private List<String> tabs;
    /**
     * 密码
     */
    @JSONField(serialize = false)
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String pwd;
    /**
     * 主键ID
     */
    private Integer gid;
    /**
     * 管线
     */
    private String pipeName;
    /**
     * 管段
     */
    private String segName;
    /**
     * 穿越名称
     */
    private String acrossName;
    /**
     * 穿越长度
     */
    private double acrossLength;
    /**
     * 备注
     */
    private String remarks;
    /**
     * wkt
     */
    private String wkt;
    public Integer getGid() {