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;
|
|
/**
|
* Mpipesegment
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.m_pipesegment")
|
@EqualsAndHashCode(callSuper = false)
|
public class MpipesegmentEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 116557317374533664L;
|
|
private String segname;
|
|
private String manorg;
|
|
private String medium;
|
|
private BigDecimal beginx;
|
|
private BigDecimal beginy;
|
|
private BigDecimal beginelev;
|
|
private BigDecimal endx;
|
|
private BigDecimal endy;
|
|
private BigDecimal endelev;
|
|
private BigDecimal mpag;
|
|
private BigDecimal length;
|
|
private String projname;
|
|
private String pipename;
|
|
private String belongs;
|
|
private String belongsid;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
private BigDecimal odiameter;
|
|
public MpipesegmentEntity() {
|
}
|
|
public String getSegname() {
|
return segname;
|
}
|
|
public void setSegname(String segname) {
|
this.segname = segname;
|
}
|
|
public String getManorg() {
|
return manorg;
|
}
|
|
public void setManorg(String manorg) {
|
this.manorg = manorg;
|
}
|
|
public String getMedium() {
|
return medium;
|
}
|
|
public void setMedium(String medium) {
|
this.medium = medium;
|
}
|
|
public BigDecimal getBeginx() {
|
return beginx;
|
}
|
|
public void setBeginx(BigDecimal beginx) {
|
this.beginx = beginx;
|
}
|
|
public BigDecimal getBeginy() {
|
return beginy;
|
}
|
|
public void setBeginy(BigDecimal beginy) {
|
this.beginy = beginy;
|
}
|
|
public BigDecimal getBeginelev() {
|
return beginelev;
|
}
|
|
public void setBeginelev(BigDecimal beginelev) {
|
this.beginelev = beginelev;
|
}
|
|
public BigDecimal getEndx() {
|
return endx;
|
}
|
|
public void setEndx(BigDecimal endx) {
|
this.endx = endx;
|
}
|
|
public BigDecimal getEndy() {
|
return endy;
|
}
|
|
public void setEndy(BigDecimal endy) {
|
this.endy = endy;
|
}
|
|
public BigDecimal getEndelev() {
|
return endelev;
|
}
|
|
public void setEndelev(BigDecimal endelev) {
|
this.endelev = endelev;
|
}
|
|
public BigDecimal getMpag() {
|
return mpag;
|
}
|
|
public void setMpag(BigDecimal mpag) {
|
this.mpag = mpag;
|
}
|
|
public BigDecimal getLength() {
|
return length;
|
}
|
|
public void setLength(BigDecimal length) {
|
this.length = length;
|
}
|
|
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 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 BigDecimal getOdiameter() {
|
return odiameter;
|
}
|
|
public void setOdiameter(BigDecimal odiameter) {
|
this.odiameter = odiameter;
|
}
|
}
|