feat(all): 同步最新进度

This commit is contained in:
xingc
2025-04-03 17:21:29 +08:00
parent d6098c8b87
commit 70e0e5b034
24 changed files with 806 additions and 184 deletions

View File

@@ -47,9 +47,28 @@ class PlatformSourceType(enum.Enum):
class MessageType(enum.Enum):
TEXT = 'text'
IMAGE = 'image'
READ = 'read'
class CardCategoryType(enum.Enum):
SPORTS = 'sports'
ANIME = 'anime'
OTHER = 'other'
class ProductCategory(enum.Enum):
VIP = 'vip'
POINTS = 'points'
class ProductAction(enum.Enum):
VIP_RENEWAL = 'vip_renewal'
RECHARGE_POINTS = 'recharge_points'
class OrderStatusType(enum.Enum):
INIT = 'init'
FAIL = 'fail'
OK = 'ok'
WAIT_PAYMENT = 'wait_payment'
CANCEL = 'cancel'