import IBIZSampleAuthServiceBase from './ibizsample-auth-service-base';


/**
 * 示例数据库权限服务对象
 *
 * @export
 * @class IBIZSampleAuthService
 * @extends {IBIZSampleAuthServiceBase}
 */
export default class IBIZSampleAuthService extends IBIZSampleAuthServiceBase {

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


}