feat: add ORM models for finished goods tables

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Misaka_Company
2026-05-11 11:02:24 +08:00
parent 0e7950d4c7
commit e203008866
2 changed files with 68 additions and 0 deletions

11
app/models/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
from app.models.finished_goods import (
FinishedGoodsBox,
FinishedGoodsBoxItem,
FinishedGoodsLocation,
)
__all__ = [
"FinishedGoodsLocation",
"FinishedGoodsBox",
"FinishedGoodsBoxItem",
]