com.dahuatech.icc.brm.model.v202010.department.BrmDeptAddResponse 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;
/**
* 部门新增返回结果
*
* @author 232676
* @since 1.0.0 2020/11/5 11:27
*/
public class BrmDeptAddResponse extends IccResponse {
private DeptAddData data;
public DeptAddData getData() {
return data;
}
public void setData(DeptAddData data) {
this.data = data;
}
@Override
public String toString() {
return "BrmDeptAddResponse{" + "data=" + data + '}';
}
public static class DeptAddData {
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@Override
public String toString() {
return "DeptAddData{" + "id=" + id + '}';
}
}
}