RequestHeidhData.cs 742 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 DeviceType
  12. { get; set; }
  13. public string ServerUrl
  14. { get; set; }
  15. public string Path
  16. { get; set; }
  17. public string Address
  18. { get; set; }
  19. public string Value
  20. { get; set; }
  21. public string Type
  22. { get; set; }
  23. }
  24. /// <summary>
  25. /// 类型名称
  26. /// </summary>
  27. public enum HeidnActionTypeEnum
  28. {
  29. Connect,
  30. Write,
  31. Read,
  32. Upload,
  33. StartNcProgram
  34. }
  35. }