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

com.dahuatech.icc.brm.model.v202010.person.BrmPersonUploadImgRequest Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.brm.model.v202010.person;

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;
import com.dahuatech.icc.util.CollectionUtil;

import java.io.File;

/**
 * 人员图片上传
 *
 * @author 232676
 * @since 1.0.0 2020/11/9 11:19
 */
public class BrmPersonUploadImgRequest extends AbstractIccRequest {

  public BrmPersonUploadImgRequest(File file) {
    super(BrmConstant.url(BrmConstant.BRM_URL_PERSON_UPLOAD_IMG_POST), Method.POST);
    form("file", file);
  }

  public BrmPersonUploadImgRequest(String filePath) throws ClientException {
    super(BrmConstant.url(BrmConstant.BRM_URL_PERSON_UPLOAD_IMG_POST), Method.POST);
    form("file", new File(filePath));
  }

  @Override
  public Class getResponseClass() {
    return BrmPersonUploadImgResponse.class;
  }

    public void businessValid() {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy