feat: initial commit and ignore qwen files
This commit is contained in:
29
backend/app/models/__init__.py
Normal file
29
backend/app/models/__init__.py
Normal file
@ -0,0 +1,29 @@
|
||||
"""ORM 模型导出模块"""
|
||||
from app.models.inventory import MaterialBase, BomTable, StockProduct, TransOutbound, StockBuy
|
||||
from app.models.production import (
|
||||
PmsProject,
|
||||
PmsWorkOrder,
|
||||
PmsMaterialRequisition,
|
||||
PmsMaterialApproval,
|
||||
PmsUserPreference,
|
||||
ProjectStatus,
|
||||
WorkOrderStatus,
|
||||
ApprovalStatus,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
# 库存表(只读)
|
||||
"MaterialBase",
|
||||
"BomTable",
|
||||
"StockProduct",
|
||||
"TransOutbound",
|
||||
# 生产系统新表
|
||||
"PmsProject",
|
||||
"PmsWorkOrder",
|
||||
"PmsMaterialRequisition",
|
||||
"PmsMaterialApproval",
|
||||
"PmsUserPreference",
|
||||
"ProjectStatus",
|
||||
"WorkOrderStatus",
|
||||
"ApprovalStatus",
|
||||
]
|
||||
Reference in New Issue
Block a user