com.dahuatech.icc.brm.model.v202010.person.BrmPersonQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-brm Show documentation
Show all versions of java-sdk-brm Show documentation
Dahua ICC Open API SDK for Java
The newest version!
package com.dahuatech.icc.brm.model.v202010.person;
import com.dahuatech.icc.oauth.http.IccResponse;
/**
* 人员详情结果
*
* @author 232676
* @since 1.0.0 2020/11/9 11:19
*/
public class BrmPersonQueryResponse extends IccResponse {
private PersonData data;
public PersonData getData() {
return data;
}
public void setData(PersonData data) {
this.data = data;
}
}