import IBIZCustomer_INTFAuthServiceBase from './ibizcustomer-intf-auth-service-base';


/**
 * 客户权限服务对象
 *
 * @export
 * @class IBIZCustomer_INTFAuthService
 * @extends {IBIZCustomer_INTFAuthServiceBase}
 */
export default class IBIZCustomer_INTFAuthService extends IBIZCustomer_INTFAuthServiceBase {

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


}