package com.lf.server.entity.bs;
|
|
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;
|
|
/**
|
* Mpipeline
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.m_pipeline")
|
@EqualsAndHashCode(callSuper = false)
|
public class MpipelineEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 116557317374533664L;
|
|
private String pipename;
|
|
private String medium;
|
|
private BigDecimal pipelength;
|
|
private BigDecimal begstax;
|
|
private BigDecimal begstay;
|
|
private BigDecimal begstaelev;
|
|
private BigDecimal endstax;
|
|
private BigDecimal endstay;
|
|
private BigDecimal endstaelev;
|
|
private String projname;
|
|
private LocalDate startdate;
|
|
private LocalDate producdate;
|
|
private String belongs;
|
|
private String belongsid;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
public MpipelineEntity() {
|
}
|
|
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 BigDecimal getPipelength() {
|
return pipelength;
|
}
|
|
public void setPipelength(BigDecimal pipelength) {
|
this.pipelength = pipelength;
|
}
|
|
public BigDecimal getBegstax() {
|
return begstax;
|
}
|
|
public void setBegstax(BigDecimal begstax) {
|
this.begstax = begstax;
|
}
|
|
public BigDecimal getBegstay() {
|
return begstay;
|
}
|
|
public void setBegstay(BigDecimal begstay) {
|
this.begstay = begstay;
|
}
|
|
public BigDecimal getBegstaelev() {
|
return begstaelev;
|
}
|
|
public void setBegstaelev(BigDecimal begstaelev) {
|
this.begstaelev = begstaelev;
|
}
|
|
public BigDecimal getEndstax() {
|
return endstax;
|
}
|
|
public void setEndstax(BigDecimal endstax) {
|
this.endstax = endstax;
|
}
|
|
public BigDecimal getEndstay() {
|
return endstay;
|
}
|
|
public void setEndstay(BigDecimal endstay) {
|
this.endstay = endstay;
|
}
|
|
public BigDecimal getEndstaelev() {
|
return endstaelev;
|
}
|
|
public void setEndstaelev(BigDecimal endstaelev) {
|
this.endstaelev = endstaelev;
|
}
|
|
public String getProjname() {
|
return projname;
|
}
|
|
public void setProjname(String projname) {
|
this.projname = projname;
|
}
|
|
public LocalDate getStartdate() {
|
return startdate;
|
}
|
|
public void setStartdate(LocalDate startdate) {
|
this.startdate = startdate;
|
}
|
|
public LocalDate getProducdate() {
|
return producdate;
|
}
|
|
public void setProducdate(LocalDate 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;
|
}
|
}
|