RequestBody.cs 886 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System.Collections.Generic;
  2. namespace IMCS.HeidenHain
  3. {
  4. public class RequestBody
  5. {
  6. public string MachineName
  7. { get; set; }
  8. public string ServerUrl
  9. { get; set; }
  10. public string Path
  11. { get; set; }
  12. public string Address
  13. { get; set; }
  14. public string Value
  15. { get; set; }
  16. public string Type
  17. { get; set; }
  18. public string CutterData
  19. { get; set; }
  20. public string DeviationValue
  21. { get; set; }
  22. }
  23. /// <summary>
  24. /// 类型名称
  25. /// </summary>
  26. public enum ActionTypeEnum
  27. {
  28. Connect,
  29. Collect,
  30. Write,
  31. Read,
  32. Upload,
  33. SelectNcProgram,
  34. StartNcProgram,
  35. DeleteNc,
  36. ToolList,
  37. ReadAndWriteTool,
  38. ReadProbeData,
  39. WriteDeviationValue
  40. }
  41. }