import TableSyncAuthServiceBase from './table-sync-auth-service-base'; /** * ETL表同步权限服务对象 * * @export * @class TableSyncAuthService * @extends {TableSyncAuthServiceBase} */ export default class TableSyncAuthService extends TableSyncAuthServiceBase { /** * Creates an instance of TableSyncAuthService. * * @param {*} [opts={}] * @memberof TableSyncAuthService */ constructor(opts: any = {}) { super(opts); } }