mg
2022-10-12 3f9ebf19e687c33287b0eaec64d4564a212f57db
ycl-platform/src/main/java/com/ycl/entity/caseHandler/BaseCase.java
@@ -35,7 +35,7 @@
     */
    @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty(value = "id")
    private Integer id;
    private Long id;
    /**
     * 事件编号
@@ -105,7 +105,7 @@
     */
    @TableField("create_user")
    @ApiModelProperty(value = "登记人")
    private Integer createUser;
    private Long createUser;
    /**
     * 处理状态(0误报 1上报 2立案 3派遣 4处置 5核查 6结案)
@@ -162,4 +162,21 @@
    @TableField("close_time")
    @ApiModelProperty(value = "结束时间")
    private LocalDateTime closeTime;
    /**
     * 违规事件
     */
    @TableField(value = "violations",exist = false)
    @ApiModelProperty(value = "违规事件")
    private Violations violations;
    /**
     * 违建事件
     */
    @TableField(value = "illegalBuilding",exist = false)
    @ApiModelProperty(value = "违建事件")
    private IllegalBuilding illegalBuilding;
}