import { Http,Util } from '@/utils'; import IBIZSoftwareSuitServiceBase from './ibizsoftware-suit-service-base'; /** * 软件服务对象 * * @export * @class IBIZSoftwareSuitService * @extends {IBIZSoftwareSuitServiceBase} */ export default class IBIZSoftwareSuitService extends IBIZSoftwareSuitServiceBase { /** * Creates an instance of IBIZSoftwareSuitService. * * @param {*} [opts={}] * @memberof IBIZSoftwareSuitService */ constructor(opts: any = {}) { super(opts); } }