huliguo
2 天以前 5d7b65670282a4fad015e37d567cfa171b162052
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;
 
 
}