mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 11:01:20 +00:00
10 lines
130 B
Python
10 lines
130 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class OrderStatus(Enum):
|
||
|
NO_PAY = 0
|
||
|
NO_PAY_RE = 1
|
||
|
SUCCESS = 2
|
||
|
FAILURE = 3
|
||
|
EXPIRED = 4
|