29 lines
510 B
Python
29 lines
510 B
Python
"""数据库模型"""
|
|
|
|
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",
|
|
]
|
|
|