ibizappctrl-auth-service.ts 500 字节
import IBIZAPPCTRLAuthServiceBase from './ibizappctrl-auth-service-base';


/**
 * 应用部件权限服务对象
 *
 * @export
 * @class IBIZAPPCTRLAuthService
 * @extends {IBIZAPPCTRLAuthServiceBase}
 */
export default class IBIZAPPCTRLAuthService extends IBIZAPPCTRLAuthServiceBase {

    /**
     * Creates an instance of  IBIZAPPCTRLAuthService.
     * 
     * @param {*} [opts={}]
     * @memberof  IBIZAPPCTRLAuthService
     */
    constructor(opts: any = {}) {
        super(opts);
    }


}