com.dahuatech.icc.brm.model.v202010.card.BrmCardGenIdRequest 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.card;
import com.dahuatech.hutool.http.Method;
import com.dahuatech.icc.brm.constant.BrmConstant;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.http.AbstractIccRequest;
import com.dahuatech.icc.oauth.model.v202010.HttpConfigInfo;
/**
* 卡片ID生成
*
* @author 232676
* @since 1.0.0 2020/11/12 11:27
*/
public class BrmCardGenIdRequest extends AbstractIccRequest {
public BrmCardGenIdRequest() {
super(BrmConstant.url(BrmConstant.BRM_URL_CARD_GEN_ID_GET), Method.GET);
}
public BrmCardGenIdRequest(HttpConfigInfo httpConfigInfo) throws ClientException {
super(BrmConstant.url(httpConfigInfo,BrmConstant.BRM_URL_CARD_GEN_ID_GET), Method.GET);
}
@Override
public Class getResponseClass() {
return BrmCardGenIdResponse.class;
}
public void businessValid() {
}
}