1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package cn.flightfeather.supervision.lightshare.vo
 
import com.fasterxml.jackson.annotation.JsonInclude
import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
 
@JsonInclude(JsonInclude.Include.NON_NULL)
@ApiModel(value = "区县信息")
class DistrictVo {
    /**
     * 区县ID
     */
    @ApiModelProperty(value = "区县ID")
    var districtid: Int? = null
 
    /**
     * 省份ID
     */
    @ApiModelProperty(value = "省份ID")
    var provinceid: Int? = null
 
    /**
     * 城市ID
     */
    @ApiModelProperty(value = "城市ID")
    var cityid: Int? = null
 
    /**
     * 区县编码
     */
    @ApiModelProperty(value = "区县编码")
    var districtcode: String? = null
 
    /**
     * 区县名称
     */
    @ApiModelProperty(value = "区县名称")
    var districtname: String? = null
 
    /**
     * 区县是否有站点
     */
    @ApiModelProperty(value = "区县是否有站点")
    var station: String? = null
 
}