对比新文件 |
| | |
| | | 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; |
| | | |
| | | /** |
| | | * Dlg5wboua |
| | | * @author WWW |
| | | */ |
| | | @Data |
| | | @AllArgsConstructor |
| | | @TableName("bs.dlg_5w_boua") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class Dlg5wbouaEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 937506671500162560L; |
| | | |
| | | private String maptile; |
| | | |
| | | private String gb; |
| | | |
| | | private String pac; |
| | | |
| | | private String name; |
| | | |
| | | public Dlg5wbouaEntity() { |
| | | } |
| | | |
| | | 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 String getPac() { |
| | | return pac; |
| | | } |
| | | |
| | | public void setPac(String pac) { |
| | | this.pac = pac; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | } |