package com.lf.server.entity.md;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.lf.server.entity.all.BaseEntity;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
import java.sql.Timestamp;
|
import java.time.LocalDate;
|
|
/**
|
* Mducaverngeological3dmodel
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("md.md_u_cavern_geological_3dmodel")
|
@EqualsAndHashCode(callSuper = false)
|
public class Mducaverngeological3dmodelEntity extends BaseEntity {
|
private static final long serialVersionUID = 154119093508515072L;
|
|
private String prodcode;
|
|
private String prodname;
|
|
private String proddesc;
|
|
private String projectcode;
|
|
private String projectname;
|
|
private String prodver;
|
|
private String owner;
|
|
private String prodrange;
|
|
private Double prodarea;
|
|
private Double datasize;
|
|
private String confilevel;
|
|
private String dataformat;
|
|
private Timestamp proddate;
|
|
private String coorsystem;
|
|
private String coordunit;
|
|
private String verdatum;
|
|
private String mapper;
|
|
private String reviewer;
|
|
private String checker;
|
|
private String plaerr;
|
|
private String vererr;
|
|
private String texres;
|
|
private String imaresol;
|
|
private String remarks;
|
|
private String belongsid;
|
|
private String datastatus;
|
|
public Mducaverngeological3dmodelEntity() {
|
}
|
|
public String getProdcode() {
|
return prodcode;
|
}
|
|
public void setProdcode(String prodcode) {
|
this.prodcode = prodcode;
|
}
|
|
public String getProdname() {
|
return prodname;
|
}
|
|
public void setProdname(String prodname) {
|
this.prodname = prodname;
|
}
|
|
public String getProddesc() {
|
return proddesc;
|
}
|
|
public void setProddesc(String proddesc) {
|
this.proddesc = proddesc;
|
}
|
|
public String getProjectcode() {
|
return projectcode;
|
}
|
|
public void setProjectcode(String projectcode) {
|
this.projectcode = projectcode;
|
}
|
|
public String getProjectname() {
|
return projectname;
|
}
|
|
public void setProjectname(String projectname) {
|
this.projectname = projectname;
|
}
|
|
public String getProdver() {
|
return prodver;
|
}
|
|
public void setProdver(String prodver) {
|
this.prodver = prodver;
|
}
|
|
public String getOwner() {
|
return owner;
|
}
|
|
public void setOwner(String owner) {
|
this.owner = owner;
|
}
|
|
public String getProdrange() {
|
return prodrange;
|
}
|
|
public void setProdrange(String prodrange) {
|
this.prodrange = prodrange;
|
}
|
|
public Double getProdarea() {
|
return prodarea;
|
}
|
|
public void setProdarea(Double prodarea) {
|
this.prodarea = prodarea;
|
}
|
|
public Double getDatasize() {
|
return datasize;
|
}
|
|
public void setDatasize(Double datasize) {
|
this.datasize = datasize;
|
}
|
|
public String getConfilevel() {
|
return confilevel;
|
}
|
|
public void setConfilevel(String confilevel) {
|
this.confilevel = confilevel;
|
}
|
|
public String getDataformat() {
|
return dataformat;
|
}
|
|
public void setDataformat(String dataformat) {
|
this.dataformat = dataformat;
|
}
|
|
public Timestamp getProddate() {
|
return proddate;
|
}
|
|
public void setProddate(Timestamp proddate) {
|
this.proddate = proddate;
|
}
|
|
public String getCoorsystem() {
|
return coorsystem;
|
}
|
|
public void setCoorsystem(String coorsystem) {
|
this.coorsystem = coorsystem;
|
}
|
|
public String getCoordunit() {
|
return coordunit;
|
}
|
|
public void setCoordunit(String coordunit) {
|
this.coordunit = coordunit;
|
}
|
|
public String getVerdatum() {
|
return verdatum;
|
}
|
|
public void setVerdatum(String verdatum) {
|
this.verdatum = verdatum;
|
}
|
|
public String getMapper() {
|
return mapper;
|
}
|
|
public void setMapper(String mapper) {
|
this.mapper = mapper;
|
}
|
|
public String getReviewer() {
|
return reviewer;
|
}
|
|
public void setReviewer(String reviewer) {
|
this.reviewer = reviewer;
|
}
|
|
public String getChecker() {
|
return checker;
|
}
|
|
public void setChecker(String checker) {
|
this.checker = checker;
|
}
|
|
public String getPlaerr() {
|
return plaerr;
|
}
|
|
public void setPlaerr(String plaerr) {
|
this.plaerr = plaerr;
|
}
|
|
public String getVererr() {
|
return vererr;
|
}
|
|
public void setVererr(String vererr) {
|
this.vererr = vererr;
|
}
|
|
public String getTexres() {
|
return texres;
|
}
|
|
public void setTexres(String texres) {
|
this.texres = texres;
|
}
|
|
public String getImaresol() {
|
return imaresol;
|
}
|
|
public void setImaresol(String imaresol) {
|
this.imaresol = imaresol;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
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;
|
}
|
}
|