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