From 8b7258c9427882bb1798f1502eaa35184c6e374e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Fri, 09 Aug 2024 14:29:18 +0800
Subject: [PATCH] 短信指定楼栋发送

---
 src/main/java/org/springblade/modules/eCallEventTwo/entity/ECallEventTwoEntity.java |   28 ++++++++++++++++++++++++++--
 1 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/springblade/modules/eCallEventTwo/entity/ECallEventTwoEntity.java b/src/main/java/org/springblade/modules/eCallEventTwo/entity/ECallEventTwoEntity.java
index bb5f8f3..c3d5276 100644
--- a/src/main/java/org/springblade/modules/eCallEventTwo/entity/ECallEventTwoEntity.java
+++ b/src/main/java/org/springblade/modules/eCallEventTwo/entity/ECallEventTwoEntity.java
@@ -40,9 +40,16 @@
 public class ECallEventTwoEntity   {
 	private static final long serialVersionUID = 1L;
 
-	/** 工单ID */
+	/**
+	 * 工单ID
+	 */
 	@ApiModelProperty(value = "主键ID", example = "")
-	@TableId(value = "order_id", type = IdType.ASSIGN_ID)
+	@TableId(value = "id", type = IdType.ASSIGN_ID)
+	private Long id;
+
+	/** 工单ID */
+	@ApiModelProperty(value = "orderId", example = "")
+	@TableField(value = "order_id")
 	private Long orderId;
 
 	/** 工单号/话务单号 */
@@ -261,6 +268,10 @@
 	@TableField("tag_redo")
 	private String tagRedo;
 
+	@ApiModelProperty(value = "定位地址", example = "")
+	@TableField("location")
+	private String location;
+
 	@ApiModelProperty(value = "创建人", example = "")
 	@TableField("create_user_id")
 	private Long createUserId;
@@ -273,4 +284,17 @@
 	@TableField(value = "update_time",fill = FieldFill.UPDATE)
 	private Date updateTime;
 
+	/**
+	 * 网格编号
+	 */
+	@ApiModelProperty(value = "网格编号")
+	@TableField("grid_code")
+	private String gridCode;
+	/**
+	 * 警务网格编号
+	 */
+	@ApiModelProperty(value = "警务网格编号")
+	@TableField("jw_grid_code")
+	private String jwGridCode;
+
 }

--
Gitblit v1.9.3