jiangping
2023-11-24 881fee4493077953c68f9cc43233e4bd00796f81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.doumee.model.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 分类信息表
 * @author 江蹄蹄
 * @date 2023/11/23 14:03
 */
@Data
@ApiModel("门禁出入事件同步返回信息")
public class DoorEventListResponse {
 
    @ApiModelProperty(value = "唯一标识" ,example = "1")
    private Integer eventId;
    @ApiModelProperty(value = "事件类型 0-人脸认证通过(196893) 1-刷卡认证通过(198915)" )
    private String eventType;
 
    @ApiModelProperty(value = "性别 1-男 2-女" ,example = "1")
    private Integer sex;
    @ApiModelProperty(value = "设备名称" )
    private String srcName;
    @ApiModelProperty(value = "资源类型" )
    private String srcType;
    @ApiModelProperty(value = "人员身份证号" )
    private String idcardNo;
    @ApiModelProperty(value = "姓名" )
    private String name;
    @ApiModelProperty(value = "人员类型:0 未知,1 普通,2 来宾,3 黑名单,4 管理员",example = "1")
    private Integer type;
    @ApiModelProperty(value = "进出类型 1-进 0-出 -1:未知",example = "1" )
    private Integer eventInOut;
    @ApiModelProperty(value = "人员通道号" ,example = "1")
    private Integer extAccessChannel;
    @ApiModelProperty(value = "产生时间" )
    private String createTime ;
    @ApiModelProperty(value = "人手机号" )
    private String phone ;
    @ApiModelProperty(value = "人员Id(erp端用户编码)" )
    private String userId ;
    @ApiModelProperty(value = "所属组织Id(erp端组织编码)" )
    private String orgId     ;
 
}