|
|
@@ -0,0 +1,51 @@
|
|
|
+package com.github.microservice.models.gateDoor.use;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 门闸开门信息
|
|
|
+ *
|
|
|
+ * @author TRX
|
|
|
+ * @date 2024/10/24
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@AllArgsConstructor
|
|
|
+@NoArgsConstructor
|
|
|
+public class GateDoorInfoParam {
|
|
|
+
|
|
|
+ @Schema(description = "平台生成的人员id,区分每一个人员")
|
|
|
+ private String customId;
|
|
|
+
|
|
|
+ @Schema(description = "体机上的 ID,区分每一个人员,机器生成,平台不可控制")
|
|
|
+ private String personId;
|
|
|
+
|
|
|
+ @Schema(description = "")
|
|
|
+ private String direction;
|
|
|
+
|
|
|
+ @Schema(description = "")
|
|
|
+ private String otype;
|
|
|
+
|
|
|
+ @Schema(description = "")
|
|
|
+ private String persionName;
|
|
|
+
|
|
|
+ @Schema(description = "")
|
|
|
+ private String facesluiceId;
|
|
|
+
|
|
|
+ @Schema(description = "")
|
|
|
+ private String facesluiceName;
|
|
|
+
|
|
|
+ @Schema(description = "")
|
|
|
+ private String cardNum2;
|
|
|
+
|
|
|
+ @Schema(description = "")
|
|
|
+ private String time;
|
|
|
+
|
|
|
+ @Schema(description = "")
|
|
|
+ private String pic;
|
|
|
+
|
|
|
+ private String VerifyStatus;
|
|
|
+
|
|
|
+}
|