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
|
}
|