com.dahuatech.icc.brm.model.v202010.person.BrmPersonQueryRequest 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
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;
/**
* 人员详情
*
* @author 232676
* @since 1.0.0 2020/11/9 11:19
*/
public class BrmPersonQueryRequest extends AbstractIccRequest {
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public BrmPersonQueryRequest(Long id) {
super(BrmConstant.url(BrmConstant.BRM_URL_PERSON_DETAIL_REST_GET, id), Method.GET);
this.id = id;
}
@Override
public Class getResponseClass() {
return BrmPersonQueryResponse.class;
}
public void businessValid() {
}
}