对比新文件 |
| | |
| | | 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; |
| | | |
| | | /** |
| | | * Dlg1wresa |
| | | * @author WWW |
| | | */ |
| | | @Data |
| | | @AllArgsConstructor |
| | | @TableName("bs.dlg_1w_resa") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class Dlg1wresaEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 773886384337156224L; |
| | | |
| | | private String maptile; |
| | | |
| | | private String gb; |
| | | |
| | | private String period; |
| | | |
| | | private String type; |
| | | |
| | | private String status; |
| | | |
| | | public Dlg1wresaEntity() { |
| | | } |
| | | |
| | | 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 getPeriod() { |
| | | return period; |
| | | } |
| | | |
| | | public void setPeriod(String period) { |
| | | this.period = period; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(String status) { |
| | | this.status = status; |
| | | } |
| | | } |