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;
|
|
/**
|
* Mdsborehole
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("md.md_s_borehole")
|
@EqualsAndHashCode(callSuper = false)
|
public class MdsboreholeEntity extends BaseEntity {
|
private static final long serialVersionUID = 154119093508515072L;
|
|
private String taskcode;
|
|
private String taskname;
|
|
private String drillno;
|
|
private String drilldate;
|
|
private String drilltype;
|
|
private Double datasize;
|
|
private String confilevel;
|
|
private String coorsystem;
|
|
private String verdatum;
|
|
private String producter;
|
|
private String designer;
|
|
private String remarks;
|
|
private String belongsid;
|
|
private String datastatus;
|
|
public MdsboreholeEntity() {
|
}
|
|
public String getTaskcode() {
|
return taskcode;
|
}
|
|
public void setTaskcode(String taskcode) {
|
this.taskcode = taskcode;
|
}
|
|
public String getTaskname() {
|
return taskname;
|
}
|
|
public void setTaskname(String taskname) {
|
this.taskname = taskname;
|
}
|
|
public String getDrillno() {
|
return drillno;
|
}
|
|
public void setDrillno(String drillno) {
|
this.drillno = drillno;
|
}
|
|
public String getDrilldate() {
|
return drilldate;
|
}
|
|
public void setDrilldate(String drilldate) {
|
this.drilldate = drilldate;
|
}
|
|
public String getDrilltype() {
|
return drilltype;
|
}
|
|
public void setDrilltype(String drilltype) {
|
this.drilltype = drilltype;
|
}
|
|
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 getCoorsystem() {
|
return coorsystem;
|
}
|
|
public void setCoorsystem(String coorsystem) {
|
this.coorsystem = coorsystem;
|
}
|
|
public String getVerdatum() {
|
return verdatum;
|
}
|
|
public void setVerdatum(String verdatum) {
|
this.verdatum = verdatum;
|
}
|
|
public String getProducter() {
|
return producter;
|
}
|
|
public void setProducter(String producter) {
|
this.producter = producter;
|
}
|
|
public String getDesigner() {
|
return designer;
|
}
|
|
public void setDesigner(String designer) {
|
this.designer = designer;
|
}
|
|
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;
|
}
|
}
|