From ad2ec97fe0c60eee4bb7c8cdacff7c876f280ea7 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Mon, 08 Jan 2024 11:30:18 +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