package com.javaweb.geo.vo;
|
|
import com.javaweb.geo.domain.Project;
|
|
/**
|
* @author mzy-cxy
|
*/
|
public class ExceptionProjectVo extends Project {
|
|
// 异常数量
|
private Integer exceptionNum;
|
|
// 勘探点编号
|
private String holeCodes;
|
|
// 异常时间
|
private String time;
|
|
public Integer getExceptionNum() {
|
return exceptionNum;
|
}
|
|
public void setExceptionNum(Integer exceptionNum) {
|
this.exceptionNum = exceptionNum;
|
}
|
|
public String getHoleCodes() {
|
return holeCodes;
|
}
|
|
public void setHoleCodes(String holeCodes) {
|
this.holeCodes = holeCodes;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
|
}
|