From 43f0578e80af82ecae6c61b51bd0539c6b960603 Mon Sep 17 00:00:00 2001
From: puhanshu <a9236326>
Date: 星期二, 16 八月 2022 19:08:32 +0800
Subject: [PATCH] 服务范围优化
---
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