DESKTOP-71BH0QO\L、ming
2021-04-28 15dbac0af6437e16b6606d5c790d614851493f02
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.neighbor;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @auther llming
 * @describe
 */
@Data
@ApiModel("新增邻里圈")
public class AddNeighborCircleAdminVO {
 
    @ApiModelProperty("发布内容")
    private String releaseContent;
 
    @ApiModelProperty("发布图片")
    private String releaseImages;
}