8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
// 统一导出所有财务相关 DTO
|
|
export * from './withdrawal.dto';
|
|
export * from './transaction.dto';
|
|
export * from './account.dto';
|
|
export * from './settlement.dto';
|
|
export * from './reconciliation.dto';
|
|
export * from './report.dto';
|