using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace IMCS_CCS.Model.vo { public class RequestHeidhData { public string MachineName { get; set; } public string DeviceType { get; set; } public string ServerUrl { get; set; } public string Path { get; set; } public string Address { get; set; } public string Value { get; set; } public string Type { get; set; } } /// /// 类型名称 /// public enum HeidnActionTypeEnum { Connect, Write, Read, Upload, StartNcProgram } }