package com.lf.server.entity.show;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 管道分析实体类
|
*
|
* @author xingjinshuang@smartearth.cn
|
* @date 2022/12/26
|
*/
|
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() {
|
return gid;
|
}
|
|
public void setGid(Integer gid) {
|
this.gid = gid;
|
}
|
|
public List<String> getTabs() {
|
return tabs;
|
}
|
|
public void setTabs(List<String> tabs) {
|
this.tabs = tabs;
|
}
|
|
public String getPwd() {
|
return pwd;
|
}
|
|
public void setPwd(String pwd) {
|
this.pwd = pwd;
|
}
|
|
public String getPipeName() {
|
return pipeName;
|
}
|
|
public void setPipeName(String pipeName) {
|
this.pipeName = pipeName;
|
}
|
|
public String getSegName() {
|
return segName;
|
}
|
|
public void setSegName(String segName) {
|
this.segName = segName;
|
}
|
|
public String getAcrossName() {
|
return acrossName;
|
}
|
|
public void setAcrossName(String acrossName) {
|
this.acrossName = acrossName;
|
}
|
|
public double getAcrossLength() {
|
return acrossLength;
|
}
|
|
public void setAcrossLength(double acrossLength) {
|
this.acrossLength = acrossLength;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getWkt() {
|
return wkt;
|
}
|
|
public void setWkt(String wkt) {
|
this.wkt = wkt;
|
}
|
}
|