| | |
| | | package com.lf.server.entity.bd; |
| | | package com.lf.server.entity.bs; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.sql.Timestamp; |
| | | import java.time.LocalDate; |
| | | |
| | | /** |
| | | * Mmarker |
| | |
| | | */ |
| | | @Data |
| | | @AllArgsConstructor |
| | | @TableName("bd.m_marker") |
| | | @TableName("bs.m_marker") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class MmarkerEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 505455336303196480L; |
| | | private static final long serialVersionUID = 576425296057213696L; |
| | | |
| | | private String segname; |
| | | |
| | |
| | | |
| | | private String photono; |
| | | |
| | | private String meadate; |
| | | private LocalDate meadate; |
| | | |
| | | private BigDecimal x; |
| | | |
| | |
| | | this.photono = photono; |
| | | } |
| | | |
| | | public String getMeadate() { |
| | | public LocalDate getMeadate() { |
| | | return meadate; |
| | | } |
| | | |
| | | public void setMeadate(String meadate) { |
| | | public void setMeadate(LocalDate meadate) { |
| | | this.meadate = meadate; |
| | | } |
| | | |
| | | public BigDecimal getx() { |
| | | public BigDecimal getX() { |
| | | return x; |
| | | } |
| | | |
| | | public void setx(BigDecimal x) { |
| | | public void setX(BigDecimal x) { |
| | | this.x = x; |
| | | } |
| | | |
| | | public BigDecimal gety() { |
| | | public BigDecimal getY() { |
| | | return y; |
| | | } |
| | | |
| | | public void sety(BigDecimal y) { |
| | | public void setY(BigDecimal y) { |
| | | this.y = y; |
| | | } |
| | | |