18 lines
518 B
JavaScript
18 lines
518 B
JavaScript
|
|
import { BaseTableStore } from './baseTable';
|
|
import { MySalaryStore } from'./mySalary';
|
|
import { TaxAgentStore } from './taxAgent';
|
|
import { BaseFormStore } from './baseForm';
|
|
import { taxRateStore } from './taxRate';
|
|
import { CumDeductStore } from "./cumDeduct"
|
|
|
|
module.exports = {
|
|
baseFormStore: new BaseFormStore(),
|
|
baseTableStore: new BaseTableStore(),
|
|
mySalaryStore: new MySalaryStore(),
|
|
taxAgentStore: new TaxAgentStore(),
|
|
taxRateStore: new taxRateStore(),
|
|
cumDeductStore: new CumDeductStore()
|
|
};
|
|
|