DESKTOP-71BH0QO\L、ming
2021-03-24 23b55dc567bcf8a453e4b88df2f5f5b664f9e9f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.panzhihua.common.model.vos.community;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("城市")
public class ComMngCityVO {
 
    /**城市名称*/
    @ApiModelProperty("城市名称")
    private String cityName;
 
    /**城市行政区划代码*/
    @ApiModelProperty("城市行政区划代码")
    private Integer cityAdcode;
 
}