package com.se.nsl.domain.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@SuppressWarnings("ALL")
|
public class RegionVo {
|
@ApiModelProperty("主键ID")
|
private Long id;
|
|
@ApiModelProperty("名称")
|
private String name;
|
|
@ApiModelProperty("类别:1-行政区划,2-重点区域,3-重点沟")
|
private Short type;
|
|
public RegionVo() {
|
}
|
|
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 Short getType() {
|
return type;
|
}
|
|
public void setType(Short type) {
|
this.type = type;
|
}
|
}
|