From 6964aa2c152d7faa8c67c65b601b573da917f572 Mon Sep 17 00:00:00 2001
From: 钟日健 <5689795+arsn@user.noreply.gitee.com>
Date: Sat, 19 Feb 2022 16:28:39 +0800
Subject: [PATCH] 1. 跨区域项目备案新增字段 2. 保安服务法人变更新增
---
src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java b/src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java
index 30b6dcb..792bfd6 100644
--- a/src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java
+++ b/src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java
@@ -115,4 +115,27 @@
*/
private Integer num;
+ /**
+ * 创建时间
+ */
+ @TableField("create_time")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private Date createTime;
+
+
+
+ /**
+ * 更新时间
+ */
+ @TableField("update_time")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private Date updateTime;
+
+
+ /**
+ * 派遣状态 0:已派遣 1:派遣结束
+ */
+ private Integer status;
}
--
Gitblit v1.9.3