1
zhanghua
2024-09-26 c775c6953d9759e70f08acbfa8f6d7490aaae3d1
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.netsdk.demo.customize.faceReconEx;
 
import java.io.Serializable;
 
/**
 * @author : 47040
 * @since : Created in 2021/2/5 18:04
 */
public class CustomerServiceModel implements Serializable {
    public Long lAnalyzerHandle;                      // 订阅句柄
    public String eventTime;                          // 抓拍时间
    public Integer channel;                           //事件通道
    public String facePicPath;                        // 人像图路径
    public String backPicPath;                        // 大图路径
    public Integer emSex;                             // 性别枚举
    public Integer emMask;                            // 口罩枚举
    public Integer age;                               // 年龄
    public String emGlasses;                          // 是否带眼镜
    public String szUID = "";                         // 候选人ID
    public String szID = "";                          // 候选人证件ID
    public String szPersonName = "";                  // 候选人姓名
    public String faceDbId = "";                      // 注册库ID
    public Integer similarity;                        // 相似度
 
    public CustomerServiceModel(Long lAnalyzerHandle,
                                String eventTime, Integer channel,
                                String facePicPath, String backPicPath,
                                Integer emSex, Integer emMask, Integer age, String emGlasses,
                                String szUID, String szID, String szPersonName, String faceDbId, Integer similarity) {
        this.lAnalyzerHandle = lAnalyzerHandle;
        this.eventTime = eventTime;
        this.channel = channel;
        this.facePicPath = facePicPath;
        this.backPicPath = backPicPath;
        this.emSex = emSex;
        this.emMask = emMask;
        this.age = age;
        this.emGlasses = emGlasses;
        this.szUID = szUID;
        this.szID = szID;
        this.szPersonName = szPersonName;
        this.faceDbId = faceDbId;
        this.similarity = similarity;
    }
 
    @Override
    public String toString() {
        return "CustomerServiceModel{" +
                "eventTime='" + eventTime + '\'' +
                ", channel=" + channel +
                ", facePicPath='" + facePicPath + '\'' +
                ", backPicPath='" + backPicPath + '\'' +
                ", emSex=" + emSex +
                ", emMask=" + emMask +
                ", age=" + age +
                ", emGlasses='" + emGlasses + '\'' +
                ", szUID='" + szUID + '\'' +
                ", szID='" + szID + '\'' +
                ", szPersonName='" + szPersonName + '\'' +
                ", faceDbId='" + faceDbId + '\'' +
                ", similarity=" + similarity +
                '}';
    }
}