LocalInfo.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Welling_Motor_Debug_Tool
  7. {
  8. internal class LocalInfo
  9. {
  10. public string LocalPath = "C:\\Temp\\MotorTestTool\\"; //本地配置文件路径
  11. public string LocalDataPath = "C:\\Temp\\MotorTestTool\\DataLog\\"; //本地数据文件路径
  12. public string LocalLogPath = "C:\\Temp\\MotorTestTool\\Log\\"; //本地日志文件路径
  13. public string PC_InfoFileName = "PC_Info.txt";//计算机信息
  14. public string ConfigFileName = "Config5.ttcfg"; //配置文件
  15. public string NoteFileName = "Note.txt";
  16. public string SerialNumFileName1 = "serial1";//测试流水号
  17. public string SerialNumFileName2 = "serial2";//检验流水号
  18. public string ToolsPath = "C:\\Temp\\MotorTestTool\\Tools";//工具路径
  19. public string TorqueSensorFileName = "TorqueSensor.ttcfg"; //配置文件
  20. public string UsrFileName = "UserAccount3"; //登录配置文件
  21. public string CfgPathName = "cfg\\"; //配置目录
  22. public string WalkLogPathName = "funcTest\\"; //推行测试目录
  23. public string CheckPathName = "qcTest\\"; //检验目录
  24. public string SampleFileName = "Samples\\";//样机提交记录
  25. public string VersionPathName = "version\\"; //版本信息
  26. public string ServerCfgFileName = "server1.ttcfg"; //服务器配置文件
  27. public string ExcelTempleFileName = "FOQC成机参数检验标准_Temple1.xls"; //配置文件模板
  28. public string HelpFilename = "Welling_Motor_Debug_Tool使用说明书_V1.0.html"; //帮助文件名
  29. public string OfflineUseLogFileName = "offlg";
  30. public string OffLineUseKeyFileName = "offkey";
  31. public string PowerTimesFilename = "PowerTimes";
  32. }
  33. }