1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.panzhihua.common.model.vos.user;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| @ApiModel
| public class StreetVOS {
| @ApiModelProperty("街道id")
| private Long id;
|
| @ApiModelProperty("街道名")
| private String name;
|
| @ApiModelProperty("下属社区列表")
| private List<CommunityVO> childList;
| }
|
|