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


/**
 * 订单服务对象
 *
 * @export
 * @class IBIZSample0010Service
 * @extends {IBIZSample0010ServiceBase}
 */
export default class IBIZSample0010Service extends IBIZSample0010ServiceBase {

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


}