huanghongfa
2021-08-26 c161f8538c248a6bd01054b8e5b79a1b2d5dd476
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ChangeCommentStatusByAdminVO {
 
    @ApiModelProperty("评论id")
    private Long id;
 
    @ApiModelProperty("状态(1.显示 2.隐藏)")
    private Integer status;
 
}