package com.javaweb.geotdp.vo; import java.util.Date; import java.util.List; /** * @author mzy-cxy */ public class ExceptionResponseVo { /** 平台端公司ids */ private String companyID; /** 异常描述 */ private String description; /** 处理意见列表 */ private List handleList; /** 处理状态(0-未处理,1-已处理) */ private String handleStatus; /** 勘探点编号 */ private String holeCode; /** 平台端勘探点ids */ private String holeID; /** 异常ids */ private String ids; /** 异常等级(1-轻微,2-一般,3-严重,9-未分级) */ private String level; /** 异常时间(勘探点基准定位时间)*/ private Date mapTime; /** 项目序列号 */ private String projectID; /** 异常类型(1-距离异常,2-时间异常,3-未定位异常, 4-(未使用),5-人员异常)*/ private String type; public String getCompanyID() { return companyID; } public void setCompanyID(String companyID) { this.companyID = companyID; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public List getHandleList() { return handleList; } public void setHandleList(List handleList) { this.handleList = handleList; } public String getHandleStatus() { return handleStatus; } public void setHandleStatus(String handleStatus) { this.handleStatus = handleStatus; } public String getHoleCode() { return holeCode; } public void setHoleCode(String holeCode) { this.holeCode = holeCode; } public String getHoleID() { return holeID; } public void setHoleID(String holeID) { this.holeID = holeID; } public String getIds() { return ids; } public void setIds(String ids) { this.ids = ids; } public String getLevel() { return level; } public void setLevel(String level) { this.level = level; } public Date getMapTime() { return mapTime; } public void setMapTime(Date mapTime) { this.mapTime = mapTime; } public String getProjectID() { return projectID; } public void setProjectID(String projectID) { this.projectID = projectID; } public String getType() { return type; } public void setType(String type) { this.type = type; } }