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


/**
 * 图书服务对象
 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service.ts.ftl 生成
 * @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);
    }


}