- class Arg:
- def __init__(self):
- # 数据库地址
- self.database = "mysql+pymysql://root:123@localhost:3306/ipfcst-mts"
- # 数据存放位置
- self.dataloc = "../mts/"
- # 变量存放位置
- self.varloc = "../mts/var/"
- # 测风塔个数
- self.towerloc = [1]
- # 机头编号
- self.turbineloc = [i for i in range(102, 162)]
|