From 019af11adfc87d3e19c8cb7d5fe14069202d4f49 Mon Sep 17 00:00:00 2001
From: 钟日健 <5689795+arsn@user.noreply.gitee.com>
Date: Wed, 11 May 2022 10:37:50 +0800
Subject: [PATCH] 保安员证编号校验
---
src/main/java/org/springblade/modules/location/entity/Locus.java | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/location/entity/Locus.java b/src/main/java/org/springblade/modules/location/entity/Locus.java
index 75b5312..6265e6a 100644
--- a/src/main/java/org/springblade/modules/location/entity/Locus.java
+++ b/src/main/java/org/springblade/modules/location/entity/Locus.java
@@ -52,5 +52,16 @@
* 纬度
*/
private String latitude;
+ /**
+ * 类型 1:押运人员 2:押运车辆 3:枪支
+ */
+ @TableField("type")
+ private Integer type;
+
+ /**
+ * 押运人员/车辆/枪支id
+ */
+ @TableField("worker_id")
+ private String workerId;
}
--
Gitblit v1.9.3