RequestHeidhData.cs 801 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace IMCS_CCS.Model.vo
  6. {
  7. public class RequestHeidhData
  8. {
  9. public string MachineName
  10. { get; set; }
  11. public string ServerUrl
  12. { get; set; }
  13. public string Path
  14. { get; set; }
  15. public string Address
  16. { get; set; }
  17. public string Value
  18. { get; set; }
  19. public string Type
  20. { get; set; }
  21. public string CutterData
  22. { get; set; }
  23. public string DeviationValue
  24. { get; set; }
  25. }
  26. /// <summary>
  27. /// 类型名称
  28. /// </summary>
  29. public enum HeidnActionTypeEnum
  30. {
  31. Connect,
  32. Write,
  33. Read,
  34. Upload,
  35. StartNcProgram
  36. }
  37. }