12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Welling_Motor_Debug_Tool
- {
- internal class LocalInfo
- {
- public string LocalPath = "C:\\Temp\\MotorTestTool\\"; //本地配置文件路径
- public string LocalDataPath = "C:\\Temp\\MotorTestTool\\DataLog\\"; //本地数据文件路径
- public string ConfigFileName = "Config.ttcfg"; //配置文件
- public string ToolsPath = "C:\\Temp\\MotorTestTool\\Tools";//工具路径
- public string TorqueSensorFileName = "TorqueSensor.ttcfg"; //配置文件
- public string UsrFileName = "UserAccount"; //登录配置文件
- public string CfgPathName = "cfg\\"; //配置目录
- public string WalkLogPathName = "funcTest\\"; //推行测试目录
- public string CheckPathName = "qcTest\\"; //检验目录
- public string VersionPathName = "version\\"; //版本信息
- }
- }
|