zhanghua
2023-09-08 7ef4892f9f24f941aca37e6b3991b808a0aca619
ycl-platform/src/main/java/com/ycl/vo/casePool/CasePoolViolationVO.java
@@ -1,5 +1,6 @@
package com.ycl.vo.casePool;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -10,60 +11,71 @@
@ApiModel(value = "案件池违规VO")
public class CasePoolViolationVO {
    @ApiModelProperty(value = "id")
    private Integer id;
    /**
     * 事件编号
     */
    @ApiModelProperty(value = "事件编号", dataType = "String")
    @ApiModelProperty(value = "事件编号")
    private String code;
    /**
     * 事件来源(1-视频 2-手动登记)
     */
    @ApiModelProperty(value = "事件来源(1-视频 2-手动登记)", dataType = "Integer")
    @ApiModelProperty(value = "事件来源(1-视频 2-手动登记)")
    private Integer eventSource;
    /**
     * 报警点位 事发地点
     */
    @ApiModelProperty(value = "报警点位", dataType = "String")
    @ApiModelProperty(value = "报警点位")
    private String site;
    /**
     * 所属街道
     */
    @ApiModelProperty(value = "所属街道", dataType = "Integer")
    private Integer streetId;
    @ApiModelProperty(value = "所属街道")
    private String street;
    /**
     * 报警时间
     */
    @ApiModelProperty(value = "报警时间", dataType = "LocalDateTime")
    @ApiModelProperty(value = "报警时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime alarmTime;
    /**
     * 大类
     */
    @ApiModelProperty(value = "大类", dataType = "String")
    @ApiModelProperty(value = "大类")
    private String category;
    /**
     * 小类
     */
    @ApiModelProperty(value = "小类", dataType = "String")
    @ApiModelProperty(value = "小类")
    private String type;
    /**
     * 案由
     */
    @ApiModelProperty(value = "案由", dataType = "String")
    @ApiModelProperty(value = "案由")
    private String actionCause;
    /**
     * 持续时间
     */
    @ApiModelProperty(value = "持续时间", dataType = "String")
    @ApiModelProperty(value = "持续时间")
    private String continueTime;
    /**
     * 关闭时间
     */
    @ApiModelProperty(value = "关闭时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime closeTime;
}