import { Http,Util } from '@/utils'; import IBIZTASKTEAMServiceBase from './ibiztaskteam-service-base'; /** * 任务团队服务对象 * * @export * @class IBIZTASKTEAMService * @extends {IBIZTASKTEAMServiceBase} */ export default class IBIZTASKTEAMService extends IBIZTASKTEAMServiceBase { /** * Creates an instance of IBIZTASKTEAMService. * * @param {*} [opts={}] * @memberof IBIZTASKTEAMService */ constructor(opts: any = {}) { super(opts); } }