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;
|
|
/**
|
* Plpipelinef
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("si.pl_pipeline_f")
|
@EqualsAndHashCode(callSuper = false)
|
public class PlpipelinefEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 827932414518637696L;
|
|
private String pipename;
|
|
private String medium;
|
|
private Double pipelength;
|
|
private Double begstax;
|
|
private Double begstay;
|
|
private Double begstaelev;
|
|
private Double endstax;
|
|
private Double endstay;
|
|
private Double endstaelev;
|
|
private String projname;
|
|
private Timestamp startdate;
|
|
private Timestamp producdate;
|
|
private String belongs;
|
|
private String belongsid;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
private String mpag;
|
|
private String odiameter;
|
|
private String pipestage;
|
|
public PlpipelinefEntity() {
|
}
|
|
public String getPipename() {
|
return pipename;
|
}
|
|
public void setPipename(String pipename) {
|
this.pipename = pipename;
|
}
|
|
public String getMedium() {
|
return medium;
|
}
|
|
public void setMedium(String medium) {
|
this.medium = medium;
|
}
|
|
public Double getPipelength() {
|
return pipelength;
|
}
|
|
public void setPipelength(Double pipelength) {
|
this.pipelength = pipelength;
|
}
|
|
public Double getBegstax() {
|
return begstax;
|
}
|
|
public void setBegstax(Double begstax) {
|
this.begstax = begstax;
|
}
|
|
public Double getBegstay() {
|
return begstay;
|
}
|
|
public void setBegstay(Double begstay) {
|
this.begstay = begstay;
|
}
|
|
public Double getBegstaelev() {
|
return begstaelev;
|
}
|
|
public void setBegstaelev(Double begstaelev) {
|
this.begstaelev = begstaelev;
|
}
|
|
public Double getEndstax() {
|
return endstax;
|
}
|
|
public void setEndstax(Double endstax) {
|
this.endstax = endstax;
|
}
|
|
public Double getEndstay() {
|
return endstay;
|
}
|
|
public void setEndstay(Double endstay) {
|
this.endstay = endstay;
|
}
|
|
public Double getEndstaelev() {
|
return endstaelev;
|
}
|
|
public void setEndstaelev(Double endstaelev) {
|
this.endstaelev = endstaelev;
|
}
|
|
public String getProjname() {
|
return projname;
|
}
|
|
public void setProjname(String projname) {
|
this.projname = projname;
|
}
|
|
public Timestamp getStartdate() {
|
return startdate;
|
}
|
|
public void setStartdate(Timestamp startdate) {
|
this.startdate = startdate;
|
}
|
|
public Timestamp getProducdate() {
|
return producdate;
|
}
|
|
public void setProducdate(Timestamp producdate) {
|
this.producdate = producdate;
|
}
|
|
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 String getMpag() {
|
return mpag;
|
}
|
|
public void setMpag(String mpag) {
|
this.mpag = mpag;
|
}
|
|
public String getOdiameter() {
|
return odiameter;
|
}
|
|
public void setOdiameter(String odiameter) {
|
this.odiameter = odiameter;
|
}
|
|
public String getPipestage() {
|
return pipestage;
|
}
|
|
public void setPipestage(String pipestage) {
|
this.pipestage = pipestage;
|
}
|
}
|