ibizsample-auth-service.ts 575 字节
import IBIZSampleAuthServiceBase from './ibizsample-auth-service-base';


/**
 * 示例数据库权限服务对象
 * 基于 APP/src/authservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service.ts.ftl 生成
 * @export
 * @class IBIZSampleAuthService
 * @extends {IBIZSampleAuthServiceBase}
 */
export default class IBIZSampleAuthService extends IBIZSampleAuthServiceBase {

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


}