baizonghao
2023-03-14 bd8147d7890bf60d88e4007c1af726ba5f364cf5
ycl-platform/src/main/java/com/ycl/entity/caseHandler/BaseCase.java
@@ -4,6 +4,7 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.vo.casePool.ViolationsVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.*;
@@ -60,7 +61,7 @@
    /**
     * 问题类别文本
     */
    @TableField(value = "category_text",exist = false)
    @TableField(value = "category_text", exist = false)
    @ApiModelProperty(value = "问题类别文本")
    private String categoryText;
@@ -73,7 +74,7 @@
    /**
     * 所属街道文本
     */
    @TableField(value = "street_text",exist = false)
    @TableField(value = "street_text", exist = false)
    @ApiModelProperty(value = "所属社区名称")
    private String streetText;
@@ -87,7 +88,7 @@
    /**
     * 所属社区文本
     */
    @TableField(value = "community_text",exist = false)
    @TableField(value = "community_text", exist = false)
    @ApiModelProperty(value = "所属社区文本")
    private String communityText;
@@ -129,7 +130,7 @@
    /**
     * 登记人文本
     */
    @TableField(value = "create_user_text",exist = false)
    @TableField(value = "create_user_text", exist = false)
    @ApiModelProperty(value = "登记人文本")
    private String createUserText;
@@ -193,17 +194,23 @@
    /**
     * 违规事件
     */
    @TableField(value = "violations",exist = false)
    @TableField(value = "violations", exist = false)
    @ApiModelProperty(value = "违规事件")
    private Violations violations;
    private ViolationsVO violationsVO;
    /**
     * 违建事件
     */
    @TableField(value = "illegalBuilding",exist = false)
    @TableField(value = "illegalBuilding", exist = false)
    @ApiModelProperty(value = "违建事件")
    private IllegalBuilding illegalBuilding;
    /**
     * 调度信息
     */
    @TableField(value = "dispatchInfo", exist = false)
    @ApiModelProperty(value = "调度信息")
    private DispatchInfo dispatchInfo;
}