This commit is contained in:
han0
2024-05-29 10:21:31 +08:00
commit 54ac29d27b
119 changed files with 6817 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
class MaterialTaskType:
OTHER_ZHEJIANG = 601 # 浙江
OTHER_GUANGZHOU = 602 # 广州
OTHER_YUNNAN = 603 # 云南
FUJIAN_DEPARTMENT = 701 # 住建厅
OIL = 801 # 汽柴油
values = {
OTHER_ZHEJIANG: '浙江',
OTHER_GUANGZHOU: '广州',
OTHER_YUNNAN: '云南',
FUJIAN_DEPARTMENT: '住建厅',
OIL: '汽柴油',
}
class MaterialTaskStatus:
WAITING = 0
DOING = 1
DONE = 2
FAILED = -1