package com.lf.server.entity.si;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.lf.server.entity.all.BaseGeoEntity;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
import java.sql.Timestamp;
|
import java.time.LocalDate;
|
|
/**
|
* Plpipelinepointb
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("si.pl_pipelinepoint_b")
|
@EqualsAndHashCode(callSuper = false)
|
public class PlpipelinepointbEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 827932414518637696L;
|
|
private String segname;
|
|
private String cpname;
|
|
private String cptype;
|
|
private String projname;
|
|
private String pipename;
|
|
private Double stavalue;
|
|
private Double x;
|
|
private Double y;
|
|
private Double elev;
|
|
private Double depth;
|
|
private String belongs;
|
|
private String belongsid;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
private Double turnangle;
|
|
private String pipestage;
|
|
public PlpipelinepointbEntity() {
|
}
|
|
public String getSegname() {
|
return segname;
|
}
|
|
public void setSegname(String segname) {
|
this.segname = segname;
|
}
|
|
public String getCpname() {
|
return cpname;
|
}
|
|
public void setCpname(String cpname) {
|
this.cpname = cpname;
|
}
|
|
public String getCptype() {
|
return cptype;
|
}
|
|
public void setCptype(String cptype) {
|
this.cptype = cptype;
|
}
|
|
public String getProjname() {
|
return projname;
|
}
|
|
public void setProjname(String projname) {
|
this.projname = projname;
|
}
|
|
public String getPipename() {
|
return pipename;
|
}
|
|
public void setPipename(String pipename) {
|
this.pipename = pipename;
|
}
|
|
public Double getStavalue() {
|
return stavalue;
|
}
|
|
public void setStavalue(Double stavalue) {
|
this.stavalue = stavalue;
|
}
|
|
public Double getX() {
|
return x;
|
}
|
|
public void setX(Double x) {
|
this.x = x;
|
}
|
|
public Double getY() {
|
return y;
|
}
|
|
public void setY(Double y) {
|
this.y = y;
|
}
|
|
public Double getElev() {
|
return elev;
|
}
|
|
public void setElev(Double elev) {
|
this.elev = elev;
|
}
|
|
public Double getDepth() {
|
return depth;
|
}
|
|
public void setDepth(Double depth) {
|
this.depth = depth;
|
}
|
|
public String getBelongs() {
|
return belongs;
|
}
|
|
public void setBelongs(String belongs) {
|
this.belongs = belongs;
|
}
|
|
public String getBelongsid() {
|
return belongsid;
|
}
|
|
public void setBelongsid(String belongsid) {
|
this.belongsid = belongsid;
|
}
|
|
public String getDatastatus() {
|
return datastatus;
|
}
|
|
public void setDatastatus(String datastatus) {
|
this.datastatus = datastatus;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public String getDatastage() {
|
return datastage;
|
}
|
|
public void setDatastage(String datastage) {
|
this.datastage = datastage;
|
}
|
|
public Double getTurnangle() {
|
return turnangle;
|
}
|
|
public void setTurnangle(Double turnangle) {
|
this.turnangle = turnangle;
|
}
|
|
public String getPipestage() {
|
return pipestage;
|
}
|
|
public void setPipestage(String pipestage) {
|
this.pipestage = pipestage;
|
}
|
}
|