import { Http,Util } from '@/utils'; import DstSystemServiceBase from './dst-system-service-base'; /** * 系统服务对象 * * @export * @class DstSystemService * @extends {DstSystemServiceBase} */ export default class DstSystemService extends DstSystemServiceBase { /** * Creates an instance of DstSystemService. * * @param {*} [opts={}] * @memberof DstSystemService */ constructor(opts: any = {}) { super(opts); } }