对比新文件 |
| | |
| | | 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; |
| | | |
| | | /** |
| | | * Mmarker |
| | | * @author WWW |
| | | */ |
| | | @Data |
| | | @AllArgsConstructor |
| | | @TableName("bs.m_marker") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class MmarkerEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 576425296057213696L; |
| | | |
| | | private String segname; |
| | | |
| | | private String markername; |
| | | |
| | | private String markertype; |
| | | |
| | | private String projname; |
| | | |
| | | private String pipename; |
| | | |
| | | private BigDecimal stavalue; |
| | | |
| | | private String photono; |
| | | |
| | | private LocalDate meadate; |
| | | |
| | | private BigDecimal x; |
| | | |
| | | private BigDecimal y; |
| | | |
| | | private BigDecimal elev; |
| | | |
| | | private String belongs; |
| | | |
| | | private String belongsid; |
| | | |
| | | private String datastatus; |
| | | |
| | | private String remarks; |
| | | |
| | | private String version; |
| | | |
| | | private String datastage; |
| | | |
| | | public MmarkerEntity() { |
| | | } |
| | | |
| | | public String getSegname() { |
| | | return segname; |
| | | } |
| | | |
| | | public void setSegname(String segname) { |
| | | this.segname = segname; |
| | | } |
| | | |
| | | public String getMarkername() { |
| | | return markername; |
| | | } |
| | | |
| | | public void setMarkername(String markername) { |
| | | this.markername = markername; |
| | | } |
| | | |
| | | public String getMarkertype() { |
| | | return markertype; |
| | | } |
| | | |
| | | public void setMarkertype(String markertype) { |
| | | this.markertype = markertype; |
| | | } |
| | | |
| | | 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 BigDecimal getStavalue() { |
| | | return stavalue; |
| | | } |
| | | |
| | | public void setStavalue(BigDecimal stavalue) { |
| | | this.stavalue = stavalue; |
| | | } |
| | | |
| | | public String getPhotono() { |
| | | return photono; |
| | | } |
| | | |
| | | public void setPhotono(String photono) { |
| | | this.photono = photono; |
| | | } |
| | | |
| | | public LocalDate getMeadate() { |
| | | return meadate; |
| | | } |
| | | |
| | | public void setMeadate(LocalDate meadate) { |
| | | this.meadate = meadate; |
| | | } |
| | | |
| | | 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 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; |
| | | } |
| | | } |