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;
|
|
/**
|
* Mvalvehousepoint
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.m_valvehousepoint")
|
@EqualsAndHashCode(callSuper = false)
|
public class MvalvehousepointEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 757752290348406912L;
|
|
private BigDecimal x;
|
|
private BigDecimal y;
|
|
private BigDecimal elev;
|
|
private String segname;
|
|
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 String valvehname;
|
|
private String valvehdesc;
|
|
private String valvehtype;
|
|
private String location;
|
|
private String principal;
|
|
private LocalDate useddate;
|
|
public MvalvehousepointEntity() {
|
}
|
|
public BigDecimal getX() {
|
return x;
|
}
|
|
public void setX(BigDecimal x) {
|
this.x = x;
|
}
|
|
public BigDecimal getY() {
|
return y;
|
}
|
|
public void setY(BigDecimal y) {
|
this.y = y;
|
}
|
|
public BigDecimal getElev() {
|
return elev;
|
}
|
|
public void setElev(BigDecimal elev) {
|
this.elev = elev;
|
}
|
|
public String getSegname() {
|
return segname;
|
}
|
|
public void setSegname(String segname) {
|
this.segname = segname;
|
}
|
|
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 String getValvehname() {
|
return valvehname;
|
}
|
|
public void setValvehname(String valvehname) {
|
this.valvehname = valvehname;
|
}
|
|
public String getValvehdesc() {
|
return valvehdesc;
|
}
|
|
public void setValvehdesc(String valvehdesc) {
|
this.valvehdesc = valvehdesc;
|
}
|
|
public String getValvehtype() {
|
return valvehtype;
|
}
|
|
public void setValvehtype(String valvehtype) {
|
this.valvehtype = valvehtype;
|
}
|
|
public String getLocation() {
|
return location;
|
}
|
|
public void setLocation(String location) {
|
this.location = location;
|
}
|
|
public String getPrincipal() {
|
return principal;
|
}
|
|
public void setPrincipal(String principal) {
|
this.principal = principal;
|
}
|
|
public LocalDate getUseddate() {
|
return useddate;
|
}
|
|
public void setUseddate(LocalDate useddate) {
|
this.useddate = useddate;
|
}
|
}
|