feat: restore source parity and harden agent runtime
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
"""报表枚举"""
|
||||
from enum import IntEnum, Enum
|
||||
|
||||
|
||||
class ReportVersionState(IntEnum):
|
||||
"""版本状态"""
|
||||
DESIGNING = 0
|
||||
ACTIVE = 1
|
||||
ARCHIVED = 2
|
||||
|
||||
|
||||
class CellTypeEnum(str, Enum):
|
||||
"""单元格类型(与 JNPF CellDataEnum 对齐)"""
|
||||
TEXT = "text"
|
||||
DATA_SOURCE = "dataSource"
|
||||
PARAMETER = "parameter"
|
||||
EXPRESSION = "expression"
|
||||
CELL_CHART = "cellChart"
|
||||
JSBARCODE = "jsbarcode"
|
||||
QRCODE = "qrcode"
|
||||
Reference in New Issue
Block a user