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

com.dahuatech.icc.brm.model.v202010.department.BrmDeptGenIdRequest Maven / Gradle / Ivy

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() {
        //所有参数非必须
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy