RequestHeidhData.cs 854 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. public string BindInfo
  26. { get; set; }
  27. }
  28. /// <summary>
  29. /// 类型名称
  30. /// </summary>
  31. public enum HeidnActionTypeEnum
  32. {
  33. Connect,
  34. Write,
  35. Read,
  36. Upload,
  37. StartNcProgram
  38. }
  39. }