You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

24 lines
997 B

# -------------------------- 开始:运行模式 -------------------------------
from enum import Enum
class run_mode(Enum):
formal = 1
test = 2
fix = 3
# !!!谨慎选择run_mode.fix,这将把修复的数据上传到正式的系统 !!!
curr_run_mode = run_mode.test
# -------------------------- 结束:运行模式 -------------------------------
# -------------------------- 开始:路径配置 -------------------------------
# print_factory_type_dir="/root/print_factory_type"
print_factory_type_dir="/home/algo/Documents/print_factory_type"
url_send_layout = 'https://mp.api.suwa3d.com/api/printTypeSettingOrder/printTypeSettingOrderSuccess'
# -------------------------- 结束:路径配置 -------------------------------
# -------------------------- 开始:机台尺寸 -------------------------------
big_machine_size = [600, 500, 300]
small_machine_size = [380, 345, 250]
# -------------------------- 结束:机台尺寸 -------------------------------