com.dahuatech.icc.brm.model.v202010.user.BrmUserPrivilegeMenusRequest 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.user;
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;
public class BrmUserPrivilegeMenusRequest extends AbstractIccRequest {
public BrmUserPrivilegeMenusRequest(String terminal,String systemCode) {
super(BrmConstant.url(BrmConstant.BRM_URL_USER_PRIVILEGE_MENUS_GET), Method.GET);
form("terminal",terminal);
form("systemCode",systemCode);
}
@Override
public Class getResponseClass() {
return BrmUserPrivilegeMenusResponse.class;
}
public void businessValid() {
}
}