exec-log-auth-service.ts 469 字节
import ExecLogAuthServiceBase from './exec-log-auth-service-base';


/**
 * 执行日志权限服务对象
 *
 * @export
 * @class ExecLogAuthService
 * @extends {ExecLogAuthServiceBase}
 */
export default class ExecLogAuthService extends ExecLogAuthServiceBase {

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


}