fix: add missing Bed and Locker entities to TypeORM registration

This commit is contained in:
2026-07-09 14:00:58 +08:00
parent db3e4aae84
commit 7666baceff
2 changed files with 6 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
export { Student } from './student.entity';
export { Room } from './room.entity';
export { Occupancy } from './occupancy.entity';
export { Bed } from './bed.entity';
export { Locker } from './locker.entity';
export { RoomExpense } from './room-expense.entity';
export { PersonalExpense } from './personal-expense.entity';
export { Bill } from './bill.entity';