using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Result.Monitor { public class WcsMotOpcItemStatusResult { public string OPC_GROUP_CODE { get; set; } public string OPC_ITEM_CODE { get; set; } public string OPC_ITEM_NAME { get; set; } public string OPC_ITEM_DESC { get; set; } public string PLC_CODE { get; set; } public string DEV_TYPE_CODE { get; set; } public string DEV_TYPE_NAME { get; set; } public string DEV_CODE { get; set; } public string DEV_NAME { get; set; } public int OPC_ITEM_TYPE { get; set; } public string OPC_ITEM_TYPE_NAME { get; set; } public string OPC_ITEM_POS { get; set; } public int PLC_ITEM_DATA_TYPE { get; set; } public string PLC_ITEM_DATA_TYPE_NAME { get; set; } public string PLC_ITEM_VALUE { get; set; } public int CREATE_BY { get; set; } public string CREATE_NAME { get; set; } public DateTime CREATE_TIME { get; set; } public int UPDATE_BY { get; set; } public string UPDATE_NAME { get; set; } public DateTime UPDATE_TIME { 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; } } }