hromhierarchy-auth-service.ts 522 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import HROMHierarchyAuthServiceBase from './hromhierarchy-auth-service-base';


/**
 * 组织层次结构权限服务对象
 *
 * @export
 * @class HROMHierarchyAuthService
 * @extends {HROMHierarchyAuthServiceBase}
 */
export default class HROMHierarchyAuthService extends HROMHierarchyAuthServiceBase {

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


}