import { Http,Util } from '@/utils';
import IBIZCustomServiceBase from './ibizcustom-service-base';


/**
 * 自定义服务对象
 *
 * @export
 * @class IBIZCustomService
 * @extends {IBIZCustomServiceBase}
 */
export default class IBIZCustomService extends IBIZCustomServiceBase {

    /**
     * Creates an instance of  IBIZCustomService.
     * 
     * @param {*} [opts={}]
     * @memberof  IBIZCustomService
     */
    constructor(opts: any = {}) {
        super(opts);
    }


}