13 lines
328 B
JavaScript
13 lines
328 B
JavaScript
|
|
// 导出所有 HRM 模块 API
|
||
|
|
export * from './employee'
|
||
|
|
export * from './org'
|
||
|
|
export * from './certContract'
|
||
|
|
export * from './empOrgPosition'
|
||
|
|
export * from './gradePosition'
|
||
|
|
export * from './attendance'
|
||
|
|
export * from './leave'
|
||
|
|
export * from './travel'
|
||
|
|
export * from './seal'
|
||
|
|
export * from './reimburse'
|
||
|
|
export * from './flow'
|