import SysDepartmentUIServiceBase from './sys-department-ui-service-base';

/**
 * 部门UI服务对象
 *
 * @export
 * @class SysDepartmentUIService
 */
export default class SysDepartmentUIService extends SysDepartmentUIServiceBase {

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

}