| | |
| | | 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; |
| | | |
| | | /** |
| | | * Sexplorationpoint |
| | |
| | | */ |
| | | @Data |
| | | @AllArgsConstructor |
| | | @TableName("bd.s_explorationpoint") |
| | | @TableName("bs.s_explorationpoint") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class SexplorationpointEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 505455336303196480L; |
| | | private static final long serialVersionUID = 721547603943174528L; |
| | | |
| | | private String exppointid; |
| | | |
| | |
| | | this.exppointid = exppointid; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |