提供基本前后端骨架
This commit is contained in:
28
app/models/__init__.py
Normal file
28
app/models/__init__.py
Normal file
@@ -0,0 +1,28 @@
|
||||
"""数据库模型"""
|
||||
|
||||
from app.models.user import User
|
||||
from app.models.balance import (
|
||||
UserBalance,
|
||||
BalanceTransaction,
|
||||
TransactionType,
|
||||
TransactionStatus,
|
||||
)
|
||||
from app.models.redeem_code import (
|
||||
RedeemCode,
|
||||
RedeemCodeBatch,
|
||||
RedeemCodeUsageLog,
|
||||
RedeemCodeStatus,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"User",
|
||||
"UserBalance",
|
||||
"BalanceTransaction",
|
||||
"TransactionType",
|
||||
"TransactionStatus",
|
||||
"RedeemCode",
|
||||
"RedeemCodeBatch",
|
||||
"RedeemCodeUsageLog",
|
||||
"RedeemCodeStatus",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user