对比新文件 |
| | |
| | | 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; |
| | | |
| | | /** |
| | | * Dlg1whfcl |
| | | * @author WWW |
| | | */ |
| | | @Data |
| | | @AllArgsConstructor |
| | | @TableName("bs.dlg_1w_hfcl") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class Dlg1whfclEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 132691411363282880L; |
| | | |
| | | private String maptile; |
| | | |
| | | private String gb; |
| | | |
| | | private BigDecimal elev; |
| | | |
| | | private String material; |
| | | |
| | | private BigDecimal width; |
| | | |
| | | private String type; |
| | | |
| | | private String name; |
| | | |
| | | private String classes; |
| | | |
| | | private String pinyin; |
| | | |
| | | public Dlg1whfclEntity() { |
| | | } |
| | | |
| | | public String getMaptile() { |
| | | return maptile; |
| | | } |
| | | |
| | | public void setMaptile(String maptile) { |
| | | this.maptile = maptile; |
| | | } |
| | | |
| | | public String getGb() { |
| | | return gb; |
| | | } |
| | | |
| | | public void setGb(String gb) { |
| | | this.gb = gb; |
| | | } |
| | | |
| | | public BigDecimal getElev() { |
| | | return elev; |
| | | } |
| | | |
| | | public void setElev(BigDecimal elev) { |
| | | this.elev = elev; |
| | | } |
| | | |
| | | public String getMaterial() { |
| | | return material; |
| | | } |
| | | |
| | | public void setMaterial(String material) { |
| | | this.material = material; |
| | | } |
| | | |
| | | public BigDecimal getWidth() { |
| | | return width; |
| | | } |
| | | |
| | | public void setWidth(BigDecimal width) { |
| | | this.width = width; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public String getClasses() { |
| | | return classes; |
| | | } |
| | | |
| | | public void setClasses(String classes) { |
| | | this.classes = classes; |
| | | } |
| | | |
| | | public String getPinyin() { |
| | | return pinyin; |
| | | } |
| | | |
| | | public void setPinyin(String pinyin) { |
| | | this.pinyin = pinyin; |
| | | } |
| | | } |