using NX_ModelClassLibrary.CustomEnum; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NX_ModelClassLibrary.BaseModel { public class BasWcsPlcMd { public int PlcId { get; set; } public string Newid { get; set; } public string RegionCode { get; set; } public string PlcCode { get; set; } public string PlcName { get; set; } public PlcConnTypeEnum ConnTypeCode { get; set; } public PlcTypeEnum PlcTypeCode { get; set; } public string IpAddr { get; set; } public int PortNo { get; set; } public int ReadBlockNo { get; set; } public int ReadStartPos { get; set; } public int ReadLen { get; set; } public int WriteBlockNo { get; set; } public int WriteStartPos { get; set; } public int WriteLen { get; set; } public UsedFlagEnum UsedFlag { get; set; } public DelFlagEnum DelFlag { get; set; } public int CreateBy { get; set; } public string CreateCode { get; set; } public string CreateName { get; set; } public DateTime CreateTime { get; set; } public int UpdateBy { get; set; } public string UpdateCode { get; set; } public string UpdateName { get; set; } public DateTime UpdateTime { get; set; } public int DataVersion { get; set; } public string Remarks1 { get; set; } public string Remarks2 { get; set; } public string Remarks3 { get; set; } public string Remarks4 { get; set; } public string Remarks5 { get; set; } } }