From cc057177b2fb17aee9a173a6adbabdc578fd74c7 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Mon, 06 Dec 2021 10:30:44 +0800
Subject: [PATCH] 1.许可

---
 src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java |   65 ++++++++++++++++++++++++++++++--
 1 files changed, 61 insertions(+), 4 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 2cb74f9..c7f6ba1 100644
--- a/src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java
+++ b/src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java
@@ -62,12 +62,12 @@
 		@ApiModelProperty(value = "派遣人")
 		private String dispatcher;
 	/**
-	* 派遣时间
+	* 派遣开始时间
 	*/
-		@ApiModelProperty(value = "派遣时间")
+		@ApiModelProperty(value = "派遣开始时间")
 		@TableField("dispatcherTime")
-		@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
-		@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+		@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
+		@DateTimeFormat(pattern = "yyyy-MM-dd")
 	private Date dispatchertime;
 	/**
 	* 派遣地址
@@ -83,4 +83,61 @@
 	private String dispatcherUnitId;
 
 
+	/**
+	 * 派遣保安ids
+	 */
+	@TableField("user_ids")
+	private String userIds;
+
+
+	/**
+	 * 派遣结束时间
+	 */
+	@TableField("end_time")
+	@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
+	@DateTimeFormat(pattern = "yyyy-MM-dd")
+	private Date endTime;
+
+
+	/**
+	 * 保安公司(组织机构)id
+	 */
+	@TableField("dept_id")
+	private Long deptId;
+
+	/**
+	 * 辖区
+	 */
+	private String jurisdiction;
+
+
+	/**
+	 * 派遣人数
+	 */
+	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