huanghongfa
2021-08-19 b4b4067f86a9b7ba91fa92ff6f04b4ed914cb18d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.panzhihua.common.model.dtos.community.bigscreen;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("大屏事件详情请求参数")
public class BigScreenEventDetailDTO {
 
    @ApiModelProperty(value = "事件id", required = true)
    private Long eventId;
 
    @ApiModelProperty(value = "事件状态(1治安隐患、2公共服务、3矛盾纠纷、4不稳定因素、5突发事件、6特殊人群上报、7随手拍处理)", required = true)
    private Integer type;
}