using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace IMCS_CCS.Model.vo { public class RequestOpcUaData { public string UserName { get; set; } public string Password { get; set; } public string ServerUrl { get; set; } public string Type { get; set; } public string Path { get; set; } public List Addresses { get; set; } public List Values { get; set; } } /// /// 类型名称 /// public enum OpcUaActionTypeEnum { Connect, Write, Read, Upload, SelectNcProgram, StartNcProgram, WriteDeviationValue } }