import ExecResultAuthServiceBase from './exec-result-auth-service-base'; /** * 执行结果权限服务对象 * * @export * @class ExecResultAuthService * @extends {ExecResultAuthServiceBase} */ export default class ExecResultAuthService extends ExecResultAuthServiceBase { /** * Creates an instance of ExecResultAuthService. * * @param {*} [opts={}] * @memberof ExecResultAuthService */ constructor(opts: any = {}) { super(opts); } }