import { Http,Util } from '@/utils'; import IBIZBOOKServiceBase from './ibizbook-service-base'; /** * 图书服务对象 * * @export * @class IBIZBOOKService * @extends {IBIZBOOKServiceBase} */ export default class IBIZBOOKService extends IBIZBOOKServiceBase { /** * Creates an instance of IBIZBOOKService. * * @param {*} [opts={}] * @memberof IBIZBOOKService */ constructor(opts: any = {}) { super(opts); } }