|
|
@@ -1,5 +1,6 @@
|
|
|
package com.github.microservice.models.gateDoor.use;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Data;
|
|
|
@@ -23,13 +24,13 @@ public class GateDoorInfoParam {
|
|
|
private String personId;
|
|
|
|
|
|
@Schema(description = "")
|
|
|
- private String direction;
|
|
|
+ private String persionName;
|
|
|
|
|
|
@Schema(description = "")
|
|
|
- private String otype;
|
|
|
+ private String direction;
|
|
|
|
|
|
@Schema(description = "")
|
|
|
- private String persionName;
|
|
|
+ private String otype;
|
|
|
|
|
|
@Schema(description = "")
|
|
|
private String facesluiceId;
|
|
|
@@ -43,9 +44,31 @@ public class GateDoorInfoParam {
|
|
|
@Schema(description = "")
|
|
|
private String time;
|
|
|
|
|
|
- @Schema(description = "")
|
|
|
+ @Schema(description = "人脸base64数据")
|
|
|
private String pic;
|
|
|
|
|
|
+ @JsonProperty("VerifyStatus")
|
|
|
+ @Schema(description = "认证结果: 0: 无 1: 允许 2: 拒绝 3: 还没有注册 22:待核验(开门方式为 3:人脸核验远程开门方式的控制记录)24:无权限(特殊版本非通行时间段的控制记录)")
|
|
|
private String VerifyStatus;
|
|
|
|
|
|
+ @JsonProperty("OpendoorWay")
|
|
|
+ @Schema(description = "")
|
|
|
+ private String OpendoorWay;
|
|
|
+
|
|
|
+ @JsonProperty("PersonType")
|
|
|
+ @Schema(description = "名单类型: 0: 白名单 1: 黑名单")
|
|
|
+ private String PersonType;
|
|
|
+
|
|
|
+ @JsonProperty("PushType")
|
|
|
+ @Schema(description = "推送类型 推送类型 0:预留 1:预留 2:调用 20 手动推送控制记录的数据返回")
|
|
|
+ private String PushType;
|
|
|
+
|
|
|
+ @JsonProperty("RecordID")
|
|
|
+ @Schema(description = "")
|
|
|
+ private String RecordID;
|
|
|
+
|
|
|
+ @JsonProperty("Sendintime")
|
|
|
+ @Schema(description = "")
|
|
|
+ private String Sendintime;
|
|
|
+
|
|
|
}
|