huanghongfa
2022-04-13 c92c380b8f29ad485024d3d1948d0d0fce56b0d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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 EditNeighborCircleAdminVO {
 
    @ApiModelProperty("邻里圈Id")
    private Long id;
 
    @ApiModelProperty("发布状态(1.待审核 2.显示 3.隐藏 4.驳回)")
    private Integer status;
 
    @ApiModelProperty(value = "当前用户Id", hidden = true)
    private Long userId;
 
    @ApiModelProperty("驳回原因")
    private String refuseReason;
 
    @ApiModelProperty("使用类型(1.邻里圈 2.问题清单 3.需求清单)")
    private Integer belongType;
 
    /**
     * 使用类型(1.邻里圈 2.问题清单 3.需求清单)
     */
    public interface BelongType{
        int LLQ = 1;
        int WTQD = 2;
        int XQQD = 3;
    }
 
    /**
     * 发布状态(1.待审核 2.显示 3.隐藏 4.驳回)
     */
    public interface status {
        int dsh = 1;
        int xs = 2;
        int yc = 3;
        int bh = 4;
    }
}