From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/entity/ComPropertyAlarm.java | 23 ++++++++++++++++++++++- 1 files changed, 22 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/entity/ComPropertyAlarm.java b/springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/entity/ComPropertyAlarm.java index bdb4824..16d218f 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/entity/ComPropertyAlarm.java +++ b/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; + } + } -- Gitblit v1.7.1