2022-04-22 14:35:51 +08:00
|
|
|
import { BaseTableStore } from "./baseTable";
|
|
|
|
|
import { MySalaryStore } from "./mySalary";
|
|
|
|
|
import { TaxAgentStore } from "./taxAgent";
|
|
|
|
|
import { BaseFormStore } from "./baseForm";
|
|
|
|
|
import { taxRateStore } from "./taxRate";
|
|
|
|
|
import { CumDeductStore } from "./cumDeduct";
|
|
|
|
|
import { OtherDeductStore } from "./otherDeduct";
|
|
|
|
|
import { CumSituationStore } from "./cumSituation";
|
|
|
|
|
import { ProgrammeStore } from "./programme";
|
|
|
|
|
import { AttendanceStore } from "./attendanceStore";
|
|
|
|
|
import { SalaryItemStore } from "./salaryItem";
|
|
|
|
|
import { LedgerStore } from "./ledger";
|
|
|
|
|
import { ArchivesStore } from "./archives";
|
|
|
|
|
import { salaryFileStore } from "./salaryFile";
|
|
|
|
|
import { payrollStore } from "./payroll";
|
|
|
|
|
import { calculateStore } from "./calculate";
|
|
|
|
|
import { DeclareStore } from "./declare";
|
|
|
|
|
import { StandingBookStore } from "./StandingBook";
|
2022-11-03 17:52:02 +08:00
|
|
|
import { PayrollFilesStore } from "./payrollFiles";
|
|
|
|
|
import { SpecialAddStore } from "./specialAdd";
|
2023-03-13 10:43:25 +08:00
|
|
|
import { ExternalPersonManageStore } from "./externalPersonManage";
|
2022-02-25 09:24:56 +08:00
|
|
|
|
|
|
|
|
module.exports = {
|
2022-02-28 15:11:53 +08:00
|
|
|
baseFormStore: new BaseFormStore(),
|
2022-02-25 09:24:56 +08:00
|
|
|
baseTableStore: new BaseTableStore(),
|
2022-02-28 15:11:53 +08:00
|
|
|
mySalaryStore: new MySalaryStore(),
|
2022-03-02 13:35:29 +08:00
|
|
|
taxAgentStore: new TaxAgentStore(),
|
2022-03-08 16:07:27 +08:00
|
|
|
taxRateStore: new taxRateStore(),
|
2022-03-11 10:44:42 +08:00
|
|
|
cumDeductStore: new CumDeductStore(),
|
2022-03-11 11:02:10 +08:00
|
|
|
otherDeductStore: new OtherDeductStore(),
|
2022-03-12 17:07:11 +08:00
|
|
|
cumSituationStore: new CumSituationStore(),
|
2022-03-14 17:07:26 +08:00
|
|
|
programmeStore: new ProgrammeStore(),
|
2022-03-23 16:39:45 +08:00
|
|
|
attendanceStore: new AttendanceStore(),
|
2022-03-23 19:38:10 +08:00
|
|
|
salaryItemStore: new SalaryItemStore(),
|
2022-03-31 15:32:11 +08:00
|
|
|
ledgerStore: new LedgerStore(),
|
2022-04-01 10:24:55 +08:00
|
|
|
archivesStore: new ArchivesStore(),
|
2022-04-13 16:56:31 +08:00
|
|
|
salaryFileStore: new salaryFileStore(),
|
2022-04-18 16:57:42 +08:00
|
|
|
payrollStore: new payrollStore(),
|
2022-04-20 15:28:40 +08:00
|
|
|
calculateStore: new calculateStore(),
|
2022-04-22 14:35:51 +08:00
|
|
|
declareStore: new DeclareStore(),
|
|
|
|
|
standingBookStore: new StandingBookStore(),
|
2022-10-17 10:03:01 +08:00
|
|
|
payrollFilesStore: new PayrollFilesStore(),
|
2023-03-13 10:43:25 +08:00
|
|
|
specialAddStore: new SpecialAddStore(),
|
|
|
|
|
externalPersonManageStore: new ExternalPersonManageStore()
|
2022-02-25 09:24:56 +08:00
|
|
|
};
|