package com.javaweb.geotdp.vo;
|
|
import javax.validation.constraints.NotBlank;
|
|
/**
|
* @author mzy-cxy
|
*/
|
public class ExceptionVo {
|
|
@NotBlank(message="平台密钥不能为空")
|
private String secretKey;
|
|
@NotBlank(message="项目序列号不能为空")
|
private String projectID;
|
|
private String handleStatus;
|
|
public String getSecretKey() {
|
return secretKey;
|
}
|
|
public void setSecretKey(String secretKey) {
|
this.secretKey = secretKey;
|
}
|
|
public String getProjectID() {
|
return projectID;
|
}
|
|
public void setProjectID(String projectID) {
|
this.projectID = projectID;
|
}
|
|
public String getHandleStatus() {
|
return handleStatus;
|
}
|
|
public void setHandleStatus(String handleStatus) {
|
this.handleStatus = handleStatus;
|
}
|
}
|