import DstSystemAuthServiceBase from './dst-system-auth-service-base'; /** * 系统权限服务对象 * * @export * @class DstSystemAuthService * @extends {DstSystemAuthServiceBase} */ export default class DstSystemAuthService extends DstSystemAuthServiceBase { /** * Creates an instance of DstSystemAuthService. * * @param {*} [opts={}] * @memberof DstSystemAuthService */ constructor(opts: any = {}) { super(opts); } }