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

com.dahuatech.icc.brm.model.v202010.user.BrmUserPrivilegeMenusRequest Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show 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() {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy