RequestBody.cs 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. public string BindInfo
  23. { get; set; }
  24. }
  25. /// <summary>
  26. /// 类型名称
  27. /// </summary>
  28. public enum ActionTypeEnum
  29. {
  30. Connect,
  31. Collect,
  32. Write,
  33. Read,
  34. Upload,
  35. SelectNcProgram,
  36. StartNcProgram,
  37. DeleteNc,
  38. ToolList,
  39. ReadAndWriteTool,
  40. ReadProbeData,
  41. WriteDeviationValue,
  42. WriteTakeCutter,
  43. BindingInfo
  44. }
  45. }