fhx
2024-04-17 fb39d8f111bbccc6385ded48c3a09e827585b5fd
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
package com.hz.his.dto.face;
 
import lombok.Data;
 
/**
 * @USER: fhx
 * @DATE: 2024/4/17
 **/
@Data
public class FaceLibDto {
 
    /** 人员ID(User/Employee) */
    private String personId;
    /** 人员名称 */
    private String personName;
    /** 人员类型 */
    private String personType;
    /** 图片路径 */
    private String imgUrl;
    /** 备注 */
    private String remark;
    /** 性别:0未知1男2女 */
    private Integer gender;
 
    /** 是否删除旧的人脸记录(0否1是) */
    private Integer isDelOld = 0;
 
}