feat: add ORM models for finished goods tables
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
11
app/models/__init__.py
Normal file
11
app/models/__init__.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from app.models.finished_goods import (
|
||||
FinishedGoodsBox,
|
||||
FinishedGoodsBoxItem,
|
||||
FinishedGoodsLocation,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"FinishedGoodsLocation",
|
||||
"FinishedGoodsBox",
|
||||
"FinishedGoodsBoxItem",
|
||||
]
|
||||
Reference in New Issue
Block a user