2022-05-13 18:06:15 +08:00
|
|
|
import { SimpleOrgStore } from "./tree/simple_org";
|
|
|
|
|
import { StandardOrgStore } from "./tree/standard_org";
|
|
|
|
|
import { RankSchemeStore } from "./rankscheme";
|
|
|
|
|
import { JobLevelStore } from "./joblevel";
|
|
|
|
|
import { JobGradeStore } from "./jobgrade";
|
|
|
|
|
import { OfficeManageStore } from "./officeManage";
|
2022-05-13 18:09:32 +08:00
|
|
|
import { SequenceStore } from "./sequence";
|
|
|
|
|
import { GroupStore } from "./group";
|
2022-06-07 18:01:50 +08:00
|
|
|
import { CompanyExtendStore } from "./companyextend";
|
|
|
|
|
import { CompanyStore } from "./company";
|
|
|
|
|
import { DepartmentStore } from "./department";
|
|
|
|
|
import { DepartmentExtendStore } from "./departmentextend";
|
|
|
|
|
import { StaffSchemeStore } from "./staffscheme";
|
|
|
|
|
import { StaffStore } from "./staff";
|
|
|
|
|
import { JobStore } from "./job";
|
|
|
|
|
import { JobExtendStore } from "./jobextend";
|
|
|
|
|
import { NumberSetStore } from "./numberSet";
|
2022-06-10 16:37:52 +08:00
|
|
|
import {FieldDefinedStore} from "./fieldDefined";
|
2022-06-20 17:08:10 +08:00
|
|
|
import {ResourceStore} from "./resource";
|
2022-06-21 18:39:50 +08:00
|
|
|
import {ResourceExtendStore} from "./resourceExtend";
|
2022-06-27 18:48:28 +08:00
|
|
|
import {DatasImportStore} from "./datasImport";
|
2022-06-30 17:14:04 +08:00
|
|
|
import {HrmImportResource} from "./importresource";
|
|
|
|
|
import {HrmImportCommon} from "./importCommon";
|
2022-07-05 18:54:56 +08:00
|
|
|
import {HrmBasicDataImport} from "./import";
|
2022-09-16 18:11:28 +08:00
|
|
|
import {NewImportStore} from "./newImport";
|
|
|
|
|
import {ResourceBasicInfoStore} from "./reserouseBasicInfo";
|
|
|
|
|
import {ImportDialogStore} from "./importDialog";
|
2022-09-20 14:15:13 +08:00
|
|
|
import {ResourceCardStore} from "./resourceCard";
|
2022-10-21 14:35:06 +08:00
|
|
|
import {ManagerDetachStore} from "./managerDetach";
|
2022-11-10 18:50:45 +08:00
|
|
|
import {ColumnSetting} from './columnSetting';
|
2023-03-28 13:43:23 +08:00
|
|
|
import {PersonnelResumeStore} from './personnelResume';
|
|
|
|
|
import { OrgChartStore } from "./orgchart";
|
2022-07-05 18:54:56 +08:00
|
|
|
|
2022-06-02 16:51:21 +08:00
|
|
|
|
2022-05-05 16:02:19 +08:00
|
|
|
module.exports = {
|
|
|
|
|
simpleOrgStore: new SimpleOrgStore(),
|
2022-05-06 16:53:43 +08:00
|
|
|
standardOrgStore: new StandardOrgStore(),
|
2022-05-10 18:02:06 +08:00
|
|
|
rankScheme: new RankSchemeStore(),
|
|
|
|
|
jobLevel: new JobLevelStore(),
|
|
|
|
|
jobGrade: new JobGradeStore(),
|
2022-05-13 18:06:15 +08:00
|
|
|
officeManageStore: new OfficeManageStore(),
|
2022-05-12 14:57:36 +08:00
|
|
|
sequence: new SequenceStore(),
|
2022-05-13 18:09:32 +08:00
|
|
|
group: new GroupStore(),
|
2022-05-17 14:47:54 +08:00
|
|
|
companyExtend: new CompanyExtendStore(),
|
2022-05-24 09:48:57 +08:00
|
|
|
company: new CompanyStore(),
|
2022-06-02 16:51:21 +08:00
|
|
|
department: new DepartmentStore(),
|
|
|
|
|
departmentExtend: new DepartmentExtendStore(),
|
2022-05-25 14:58:27 +08:00
|
|
|
staffScheme: new StaffSchemeStore(),
|
2022-05-26 17:28:18 +08:00
|
|
|
staff: new StaffStore(),
|
2022-05-30 17:11:10 +08:00
|
|
|
job: new JobStore(),
|
|
|
|
|
jobExtend: new JobExtendStore(),
|
2022-06-07 18:01:50 +08:00
|
|
|
numberSet: new NumberSetStore(),
|
2022-06-20 17:08:10 +08:00
|
|
|
fieldDefined: new FieldDefinedStore(),
|
2022-06-21 18:39:50 +08:00
|
|
|
resource: new ResourceStore(),
|
2022-06-27 18:48:28 +08:00
|
|
|
resourceExtend: new ResourceExtendStore(),
|
2022-06-30 17:14:04 +08:00
|
|
|
datasImport: new DatasImportStore(),
|
|
|
|
|
hrmImportResource:new HrmImportResource(),
|
|
|
|
|
hrmImportCommon:new HrmImportCommon(),
|
2022-07-05 18:54:56 +08:00
|
|
|
hrmBasicDataImport:new HrmBasicDataImport(),
|
2022-09-16 18:11:28 +08:00
|
|
|
newImport: new NewImportStore(),
|
2022-08-23 17:53:21 +08:00
|
|
|
resourceBasicInfo: new ResourceBasicInfoStore(),
|
2022-09-20 14:15:13 +08:00
|
|
|
importDialog: new ImportDialogStore(),
|
2022-10-21 14:35:06 +08:00
|
|
|
resourceCard:new ResourceCardStore(),
|
2022-11-07 16:35:58 +08:00
|
|
|
managerDetach: new ManagerDetachStore(),
|
2022-11-10 18:50:45 +08:00
|
|
|
columnSetting: new ColumnSetting(),
|
2023-03-28 13:43:23 +08:00
|
|
|
personnelResume:new PersonnelResumeStore(),
|
|
|
|
|
orgchart:new OrgChartStore()
|
2022-05-05 16:02:19 +08:00
|
|
|
};
|