对比新文件 |
| | |
| | | package com.lf.server.entity.bd; |
| | | |
| | | 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; |
| | | |
| | | /** |
| | | * Dlg25wbouap |
| | | * @author WWW |
| | | */ |
| | | @Data |
| | | @AllArgsConstructor |
| | | @TableName("bd.dlg_25w_boua_p") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class Dlg25wbouapEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 271491552829505664L; |
| | | |
| | | private String pac; |
| | | |
| | | private String name; |
| | | |
| | | private String gb; |
| | | |
| | | private String maptile; |
| | | |
| | | public Dlg25wbouapEntity() { |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | | public String getGb() { |
| | | return gb; |
| | | } |
| | | |
| | | public void setGb(String gb) { |
| | | this.gb = gb; |
| | | } |
| | | |
| | | public String getMaptile() { |
| | | return maptile; |
| | | } |
| | | |
| | | public void setMaptile(String maptile) { |
| | | this.maptile = maptile; |
| | | } |
| | | } |