com.dahuatech.icc.brm.model.v202010.department.BrmDeptGenIdRequest 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.hutool.http.Method;
import com.dahuatech.icc.brm.constant.BrmConstant;
import com.dahuatech.icc.brm.constant.ParamConstant;
import com.dahuatech.icc.brm.exception.BusinessException;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.http.AbstractIccRequest;
/**
* 部门ID生成
*
* @author 232676
* @since 1.0.0 2020/11/5 11:27
*/
public class BrmDeptGenIdRequest extends AbstractIccRequest {
public BrmDeptGenIdRequest(Integer count) {
super(BrmConstant.url(BrmConstant.BRM_URL_DEPT_BATCH_GEN_ID_GET), Method.GET);
form("count", count);
}
@Override
public Class getResponseClass() {
return BrmDeptGenIdResponse.class;
}
public void businessValid() {
//所有参数非必须
}
}