package com.se.nsl.domain.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@SuppressWarnings("ALL")
|
public class SimuVo {
|
@ApiModelProperty("ID")
|
private Long id;
|
|
@ApiModelProperty("名称")
|
private String name;
|
|
@ApiModelProperty("服务名称")
|
private String serviceName;
|
|
@ApiModelProperty("类别:1-预测模拟,2-实时模拟,3-历史模拟")
|
private Short type;
|
|
@ApiModelProperty("区域类别:0-自定义,1-行政区划,2-重点区域,3-重点沟")
|
private Short areaType;
|
|
@ApiModelProperty("状态:0-创建仿真,1-预处理,2-分析中,10-完成,20-出错")
|
private Integer status;
|
|
public SimuVo() {
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getServiceName() {
|
return serviceName;
|
}
|
|
public void setServiceName(String serviceName) {
|
this.serviceName = serviceName;
|
}
|
|
public Short getType() {
|
return type;
|
}
|
|
public void setType(Short type) {
|
this.type = type;
|
}
|
|
public Short getAreaType() {
|
return areaType;
|
}
|
|
public void setAreaType(Short areaType) {
|
this.areaType = areaType;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
}
|