From ad0bc4e763fa988a2ec4dd8dfab7381ea7726021 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Sat, 06 Jan 2024 17:46:48 +0800
Subject: [PATCH] 区划树查询修改

---
 src/main/java/org/springblade/modules/grid/entity/GridWorkLogEntity.java |   37 +++++++++++++++++++++++++++++++------
 1 files changed, 31 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/springblade/modules/grid/entity/GridWorkLogEntity.java b/src/main/java/org/springblade/modules/grid/entity/GridWorkLogEntity.java
index 9e2abc8..534cef5 100644
--- a/src/main/java/org/springblade/modules/grid/entity/GridWorkLogEntity.java
+++ b/src/main/java/org/springblade/modules/grid/entity/GridWorkLogEntity.java
@@ -58,16 +58,33 @@
 	 */
 	@ApiModelProperty(value = "房屋编号")
 	private String houseCode;
+
 	/**
-	 * 走访人姓名
+	 * 走访类型
 	 */
-	@ApiModelProperty(value = "走访人姓名")
-	private String name;
+	@ApiModelProperty(value = "走访类型")
+	private Integer type;
 	/**
-	 * 走访人电话
+	 * 重点人员类型
 	 */
-	@ApiModelProperty(value = "走访人电话")
-	private String phone;
+	@ApiModelProperty(value = "重点人员类型")
+	private Integer personType;
+	/**
+	 * 住户id
+	 */
+	@ApiModelProperty(value = "被访人住户id")
+	private Long householdId;
+//
+//	/**
+//	 * 被访人姓名
+//	 */
+//	@ApiModelProperty(value = "被访人姓名")
+//	private String name;
+//	/**
+//	 * 被访人电话
+//	 */
+//	@ApiModelProperty(value = "被访人电话")
+//	private String phone;
 	/**
 	 * 内容
 	 */
@@ -80,6 +97,14 @@
 	private String url;
 
 	/**
+	 * 走访时间
+	 */
+	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	@ApiModelProperty("走访时间")
+	private Date workTime;
+
+	/**
 	 * 创建人
 	 */
 	@JsonSerialize(using = ToStringSerializer.class)

--
Gitblit v1.9.3