huliguo
2025-07-03 e3a2245265516fef78b4737d6fffc939e7c5e0af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.errand.object.vo.app;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiParam;
import lombok.Data;
 
@Data
@ApiModel("小区列表VO")
public class CommunityListVO {
    @ApiModelProperty("小区id")
    private Integer id;
    @ApiModelProperty("小区名称")
    private String name;
 
 
}