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;
|
}
|
}
|