mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
15 lines
268 B
Python
15 lines
268 B
Python
from strenum import StrEnum
|
|
|
|
|
|
class BankHandleType(StrEnum):
|
|
DEPOSIT = "DEPOSIT"
|
|
"""存款"""
|
|
WITHDRAW = "WITHDRAW"
|
|
"""取款"""
|
|
LOAN = "LOAN"
|
|
"""贷款"""
|
|
REPAYMENT = "REPAYMENT"
|
|
"""还款"""
|
|
INTEREST = "INTEREST"
|
|
"""利息"""
|