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