%DE_PKGPATH%-auth-service-base.ts.ftl 1.1 KB
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 28 29 30 31 32 33 34 35 36 37 38 39 40
<#ibiztemplate>
TARGET=PSAPPDATAENTITY
</#ibiztemplate>
import AuthService from '../auth-service';

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

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

    /**
     * 根据当前数据获取实体操作标识
     *
     * @param {*} mainSateOPPrivs 传入数据操作标识
     * @returns {any}
     * @memberof ${srfclassname('${item.getCodeName()}')}AuthServiceBase
     */
    public getOPPrivs(mainSateOPPrivs:any):any{
        let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
        if(mainSateOPPrivs){
            Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
        }
        return curDefaultOPPrivs;
    }

}