hromhierarchy-cat-service.ts 545 字节
import { Http,Util } from '@/utils';
import HROMHierarchyCatServiceBase from './hromhierarchy-cat-service-base';


/**
 * 结构层次类别服务对象
 *
 * @export
 * @class HROMHierarchyCatService
 * @extends {HROMHierarchyCatServiceBase}
 */
export default class HROMHierarchyCatService extends HROMHierarchyCatServiceBase {

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


}