1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 = "City")
class CityVo {
    @ApiModelProperty(value = "主键id")
    var cityid: Int? = null
    @ApiModelProperty(value = "省份id")
    var pronvinceid: Int? = null
    @ApiModelProperty(value = "城市编码")
    var citycode: String? = null
    @ApiModelProperty(value = "城市名称")
    var cityname: String? = null
 
    var station: String? = null
}