| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.sql.Timestamp; |
| | | import java.time.LocalDate; |
| | | |
| | | /** |
| | | * Mmarker |
| | |
| | | @TableName("bs.m_marker") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class MmarkerEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 488103974837858240L; |
| | | 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; |
| | | } |
| | | |