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-05-17 14:47:54 +08:00
|
|
|
import {CompanyExtendStore} from "./companyextend";
|
2022-05-30 17:11:10 +08:00
|
|
|
import {CompanyStore} from "./company";
|
2022-06-02 16:51:21 +08:00
|
|
|
import {DepartmentStore} from "./department";
|
|
|
|
|
import {DepartmentExtendStore} from "./departmentextend";
|
2022-05-24 09:48:57 +08:00
|
|
|
import {StaffSchemeStore} from "./staffscheme";
|
2022-05-25 14:58:27 +08:00
|
|
|
import {StaffStore} from "./staff";
|
2022-05-30 17:11:10 +08:00
|
|
|
import {JobStore} from "./job";
|
|
|
|
|
import {JobExtendStore} from "./jobextend";
|
2022-05-05 16:02:19 +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-05-05 16:02:19 +08:00
|
|
|
};
|