hotfix/2.12.1.2404.02

This commit is contained in:
黎永顺 2024-05-11 11:33:09 +08:00
parent 166dfa6979
commit 78142d32fe
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,2 @@
module.exports = {
};

View File

@ -19,6 +19,7 @@ import { StandingBookStore } from "./StandingBook";
import { PayrollFilesStore } from "./payrollFiles";
import { SpecialAddStore } from "./specialAdd";
import { ExternalPersonManageStore } from "./externalPersonManage";
import CustomModule from "./custom-stores";
module.exports = {
baseFormStore: new BaseFormStore(),
@ -41,5 +42,6 @@ module.exports = {
standingBookStore: new StandingBookStore(),
payrollFilesStore: new PayrollFilesStore(),
specialAddStore: new SpecialAddStore(),
externalPersonManageStore: new ExternalPersonManageStore()
externalPersonManageStore: new ExternalPersonManageStore(),
...CustomModule
};