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.
18 lines
513 B
18 lines
513 B
from enum import Enum |
|
class run_mode(Enum): |
|
formal = 1 |
|
test = 2 |
|
fix = 3 |
|
|
|
# !!!谨慎选择run_mode.fix,这将把修复的数据上传到正式的系统 !!! |
|
curr_run_mode = run_mode.test |
|
|
|
is_test = True |
|
|
|
# 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]
|
|
|