对比新文件 |
| | |
| | | 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; |
| | | import java.time.LocalDate; |
| | | |
| | | /** |
| | | * Bpacregionalgeology |
| | | * @author WWW |
| | | */ |
| | | @Data |
| | | @AllArgsConstructor |
| | | @TableName("bd.b_pac_regional_geology") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class BpacregionalgeologyEntity extends BaseGeoEntity { |
| | | private static final long serialVersionUID = 994086034127551104L; |
| | | |
| | | private String pac; |
| | | |
| | | private String name; |
| | | |
| | | private String gb; |
| | | |
| | | private String materiname; |
| | | |
| | | private String belongs; |
| | | |
| | | private String belongsid; |
| | | |
| | | private String datastatus; |
| | | |
| | | private String remarks; |
| | | |
| | | public BpacregionalgeologyEntity() { |
| | | } |
| | | |
| | | 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 getMateriname() { |
| | | return materiname; |
| | | } |
| | | |
| | | public void setMateriname(String materiname) { |
| | | this.materiname = materiname; |
| | | } |
| | | |
| | | public String getBelongs() { |
| | | return belongs; |
| | | } |
| | | |
| | | public void setBelongs(String belongs) { |
| | | this.belongs = belongs; |
| | | } |
| | | |
| | | public String getBelongsid() { |
| | | return belongsid; |
| | | } |
| | | |
| | | public void setBelongsid(String belongsid) { |
| | | this.belongsid = belongsid; |
| | | } |
| | | |
| | | public String getDatastatus() { |
| | | return datastatus; |
| | | } |
| | | |
| | | public void setDatastatus(String datastatus) { |
| | | this.datastatus = datastatus; |
| | | } |
| | | |
| | | public String getRemarks() { |
| | | return remarks; |
| | | } |
| | | |
| | | public void setRemarks(String remarks) { |
| | | this.remarks = remarks; |
| | | } |
| | | } |