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.Date;
|
|
/**
|
* 异常处理对象 js_handle_exception
|
*
|
* @author cxy
|
* @date 2022-11-14
|
*/
|
public class HandleException extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String ids;
|
|
/** 企业ID */
|
@Excel(name = "企业ID")
|
private String companyId;
|
|
/** 异常描述 */
|
@Excel(name = "异常描述")
|
private String description;
|
|
/** 处理状态(0-未处理,1-已处理) */
|
@Excel(name = "处理状态", readConverterExp = "0-未处理,1-已处理")
|
private String handleStatus;
|
|
/** 勘探点编号 */
|
@Excel(name = "勘探点编号")
|
private String holeCode;
|
|
/** 勘探点ID */
|
@Excel(name = "勘探点ID")
|
private String holeId;
|
|
/** 异常等级(1-轻微,2-一般,3-严重,9-未分级) */
|
@Excel(name = "异常等级", readConverterExp = "1-轻微,2-一般,3-严重,9-未分级")
|
private String level;
|
|
/** 异常时间(勘探点基准定位时间) */
|
@Excel(name = "异常时间", readConverterExp = "勘探点基准定位时间")
|
private Date mapTime;
|
|
/** 项目序列号 */
|
@Excel(name = "项目序列号")
|
private String projectId;
|
|
private String projectName;
|
|
/** 异常类型(1-距离异常,2-时间异常,3-未定位异常,4-(未使用),5-人员异常) */
|
@Excel(name = "异常类型", readConverterExp = "1-距离异常,2-时间异常,3-未定位异常,4-(未使用),5-人员异常")
|
private String type;
|
|
|
/** 是否删除(0 未删除 1删除) */
|
@Excel(name = "是否删除", readConverterExp = "0未删除,1删除")
|
private Boolean isDelete;
|
|
public void setIds(String ids)
|
{
|
this.ids = ids;
|
}
|
|
public String getIds()
|
{
|
return ids;
|
}
|
public void setCompanyId(String companyId)
|
{
|
this.companyId = companyId;
|
}
|
|
public String getCompanyId()
|
{
|
return companyId;
|
}
|
|
public void setDescription(String description)
|
{
|
this.description = description;
|
}
|
|
public String getDescription()
|
{
|
return description;
|
}
|
public void setHandleStatus(String handleStatus)
|
{
|
this.handleStatus = handleStatus;
|
}
|
|
public String getHandleStatus()
|
{
|
return handleStatus;
|
}
|
public void setHoleCode(String holeCode)
|
{
|
this.holeCode = holeCode;
|
}
|
|
public String getHoleCode()
|
{
|
return holeCode;
|
}
|
public void setHoleId(String holeId)
|
{
|
this.holeId = holeId;
|
}
|
|
public String getHoleId()
|
{
|
return holeId;
|
}
|
public void setLevel(String level)
|
{
|
this.level = level;
|
}
|
|
public String getLevel()
|
{
|
return level;
|
}
|
public void setMapTime(Date mapTime)
|
{
|
this.mapTime = mapTime;
|
}
|
|
public Date getMapTime()
|
{
|
return mapTime;
|
}
|
public void setProjectId(String projectId)
|
{
|
this.projectId = projectId;
|
}
|
|
public String getProjectId()
|
{
|
return projectId;
|
}
|
public void setType(String type)
|
{
|
this.type = type;
|
}
|
|
public String getProjectName() {
|
return projectName;
|
}
|
|
public void setProjectName(String projectName) {
|
this.projectName = projectName;
|
}
|
|
public String getType()
|
{
|
return type;
|
}
|
public void setIsDelete(Boolean isDelete)
|
{
|
this.isDelete = isDelete;
|
}
|
|
public Boolean getIsDelete()
|
{
|
return isDelete;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("ids", getIds())
|
.append("companyId", getCompanyId())
|
.append("description", getDescription())
|
.append("handleStatus", getHandleStatus())
|
.append("holeCode", getHoleCode())
|
.append("holeId", getHoleId())
|
.append("level", getLevel())
|
.append("mapTime", getMapTime())
|
.append("projectId", getProjectId())
|
.append("projectName", getProjectName())
|
.append("type", getType())
|
.append("isDelete", getIsDelete())
|
.toString();
|
}
|
}
|