com.dahuatech.icc.brm.model.v202010.department.BrmDeptGenIdResponse 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.department;
import com.dahuatech.icc.oauth.http.IccResponse;
import java.util.List;
/**
* 生成ID返回结果
*
* @author 232676
* @since 1.0.0 2020-11-05 09:59:11
*/
public class BrmDeptGenIdResponse extends IccResponse {
private DeptPageData data;
public DeptPageData getData() {
return data;
}
public void setData(DeptPageData data) {
this.data = data;
}
@Override
public String toString() {
return "BrmDeptGenIdResponse{" + "data=" + data + '}';
}
public static class DeptPageData {
private List idList;
public List getIdList() {
return idList;
}
public void setIdList(List idList) {
this.idList = idList;
}
@Override
public String toString() {
return "DeptPageData{" + "idList=" + idList + '}';
}
}
}