package com.javaweb.geo.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.javaweb.common.annotation.Excel;
|
import com.javaweb.common.core.domain.BaseEntity;
|
|
import java.util.List;
|
|
/**
|
* 钻孔-工人对象 js_hole_person
|
*
|
* @author zmk
|
* @date 2022-10-20
|
*/
|
public class HolePerson extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
private String ids;
|
|
/**
|
* 编号
|
*/
|
private String code;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
/**
|
* 项目id
|
*/
|
@Excel(name = "项目id")
|
private String projectId;
|
|
/**
|
* 钻孔id
|
*/
|
@Excel(name = "钻孔id")
|
private String holeId;
|
|
/**
|
* 类型(工程师、工程师、机长、钻机)
|
*/
|
@Excel(name = "类型", readConverterExp = "工程师、工程师、机长、钻机")
|
private String type;
|
|
/** 描述员(必填人员id) */
|
@Excel(name = "描述员(必填人员id)")
|
private String recordPerson;
|
|
/** 描述员姓名 */
|
private String recordPersonName;
|
|
/**
|
* 司钻员ID
|
*/
|
@Excel(name = "司钻员ID")
|
private String operatePerson;
|
|
/**
|
* 司钻员证书编号/钻机编号
|
*/
|
@Excel(name = "司钻员证书编号/钻机编号")
|
private String testType;
|
|
/**
|
* 是否删除
|
*/
|
@Excel(name = "是否删除")
|
private Boolean isDeleted;
|
|
/** 关联媒体表 */
|
private List<HoleMedia> holeMediaList;
|
|
public List<HoleMedia> getHoleMediaList() {
|
return holeMediaList;
|
}
|
|
public void setHoleMediaList(List<HoleMedia> holeMediaList) {
|
this.holeMediaList = holeMediaList;
|
}
|
|
|
public void setIds(String ids) {
|
this.ids = ids;
|
}
|
|
public String getIds() {
|
return ids;
|
}
|
|
public void setProjectId(String projectId) {
|
this.projectId = projectId;
|
}
|
|
public String getProjectId() {
|
return projectId;
|
}
|
|
public void setHoleId(String holeId) {
|
this.holeId = holeId;
|
}
|
|
public String getHoleId() {
|
return holeId;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public String getRecordPerson() {
|
return recordPerson;
|
}
|
|
public void setRecordPerson(String recordPerson) {
|
this.recordPerson = recordPerson;
|
}
|
|
public void setOperatePerson(String operatePerson) {
|
this.operatePerson = operatePerson;
|
}
|
|
public String getOperatePerson() {
|
return operatePerson;
|
}
|
|
public String getTestType() {
|
return testType;
|
}
|
|
public void setTestType(String testType) {
|
this.testType = testType;
|
}
|
|
public void setIsDeleted(Boolean isDeleted) {
|
this.isDeleted = isDeleted;
|
}
|
|
public Boolean getIsDeleted() {
|
return isDeleted;
|
}
|
|
public String getRecordPersonName() {
|
return recordPersonName;
|
}
|
|
public void setRecordPersonName(String recordPersonName) {
|
this.recordPersonName = recordPersonName;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("ids", getIds())
|
.append("projectId", getProjectId())
|
.append("holeId", getHoleId())
|
.append("type", getType())
|
.append("recordPerson", getRecordPerson())
|
.append("operatePerson", getOperatePerson())
|
.append("testType", getTestType())
|
.append("isDeleted", getIsDeleted())
|
.toString();
|
}
|
}
|