11 lines
188 B
Python
11 lines
188 B
Python
from enum import unique, IntEnum
|
|
|
|
|
|
@unique
|
|
class AssemblyState(IntEnum):
|
|
NOT_STARTED = 0,
|
|
ASSEMBLING_PRODUCTS = 1,
|
|
ALL_PRODUCTS_ASSEMBLED = 2,
|
|
CONFIRMED = 3,
|
|
ENDED = 4
|