%DE_PKGPATH%-auth-service.ts.ftl 791 字节
Newer Older
tony001's avatar
tony001 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<#ibiztemplate>
TARGET=PSAPPDATAENTITY
</#ibiztemplate>
import ${srfclassname('${item.getCodeName()}')}AuthServiceBase from './${srffilepath2(item.getCodeName())}-auth-service-base';


/**
 * ${de.getLogicName()}权限服务对象
 *
 * @export
 * @class ${srfclassname('${item.getCodeName()}')}AuthService
 * @extends {${srfclassname('${item.getCodeName()}')}AuthServiceBase}
 */
export default class ${srfclassname('${item.getCodeName()}')}AuthService extends ${srfclassname('${item.getCodeName()}')}AuthServiceBase {

    /**
     * Creates an instance of  ${srfclassname('${item.getCodeName()}')}AuthService.
     * 
     * @param {*} [opts={}]
     * @memberof  ${srfclassname('${item.getCodeName()}')}AuthService
     */
    constructor(opts: any = {}) {
        super(opts);
    }


}