All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dahuatech.icc.multiinone.brm.domain.PersonBioSignatures Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.multiinone.brm.domain;

/**
 * 生物特征数据:人像头像、人像特征、指纹特征
 */
public class PersonBioSignatures {
  /** 生物特征类型 1 普通指纹 2 胁迫指纹 3 人像图片 4 9241d人像 5 红外人像 */
  private int type;

  private int index;
  private Long personId;
  private String data;
  private String path;

  public int getType() {
    return type;
  }

  public void setType(int type) {
    this.type = type;
  }

  public int getIndex() {
    return index;
  }

  public void setIndex(int index) {
    this.index = index;
  }

  public String getData() {
    return data;
  }

  public void setData(String data) {
    this.data = data;
  }

  public String getPath() {
    return path;
  }

  public void setPath(String path) {
    this.path = path;
  }

  public Long getPersonId() {
    return personId;
  }

  public void setPersonId(Long personId) {
    this.personId = personId;
  }

  @Override
  public String toString() {
    return "PersonBioSignatures{"
        + "type="
        + type
        + ", index="
        + index
        + ", personId="
        + personId
        + ", data='"
        + data
        + '\''
        + ", path='"
        + path
        + '\''
        + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy