ibizbook-auth-service.ts 550 字节
import IBIZBOOKAuthServiceBase from './ibizbook-auth-service-base';


/**
 * 图书权限服务对象
 * 基于 APP/src/authservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service.ts.ftl 生成
 * @export
 * @class IBIZBOOKAuthService
 * @extends {IBIZBOOKAuthServiceBase}
 */
export default class IBIZBOOKAuthService extends IBIZBOOKAuthServiceBase {

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


}