yanghui
2022-11-01 8f2544f1d0e5e82c0e7ee1d89abc1c916b0b9f9f
springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/entity/ComPropertyAlarm.java
@@ -30,7 +30,7 @@
    private static final long serialVersionUID = -79284364749441136L;
    @TableId(type = IdType.AUTO)
    @TableId(type = IdType.ASSIGN_ID)
    private Integer id;
    /**
@@ -93,9 +93,30 @@
    @ApiModelProperty(value = "社区id")
    private Long communityId;
    /**
     * 处理图片
     */
    @ApiModelProperty("处理图片")
    private String solveUrl;
    /**
     *接收人
     */
    private  String receiveNo;
    /**
     * 报警类型 1一键报警 2长时间无应答报警
     */
    public interface  type{
        int one=1;
        int time=2;
    }
    /**
     * 报警处理状态 0待处理 1已办结
     */
    public interface  status{
        int dcl=0;
        int ybj=1;
    }
}