using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model.WcsModel { public class WCSPlcPos { public int? Id { get; set; } public int? PlcInfoId { get; set; } public string StationNum { get; set; } public string PlcPos { get; set; } public string PosType { get; set; } public string LedIP { get; set; } public string Name { get; set; } public string IsDel { get; set; } public DateTime CreateTime { get; set; } public int? CreateUser { get; set; } public string CreateUserName { get; set; } } public class AjaxPlcPosList { public int pageIndex { get; set; } public int pageSize { get; set; } public string StationNum { get; set; } public string PlcPos { get; set; } } public class AjaxPlcPos : WCSPlcPos { public string list { get; set; } public string Operation { get; set; } } public class PosNameVal { public string PlcTaskNo { get; set; } public string PlcPalletNo { get; set; } public string TaskNo { get; set; } public string PalletNo { get; set; } public string StartLocatNo { get; set; } public string EndLocatNo { get; set; } public string StartRow { get; set; } public string StartColumn { get; set; } public string StartLayer { get; set; } public string EndRow { get; set; } public string EndColumn { get; set; } public string EndLayer { get; set; } public string PlcPos { get; set; } public string WcsPos { get; set; } } public enum PosName { PlcTaskNo, PlcPalletNo, TaskNo, PalletNo, StartLocatNo, EndLocatNo, StartRow, StartColumn, StartLayer, EndRow, EndColumn, EndLayer, } public class AjaxLedList { public int pageIndex { get; set; } public int pageSize { get; set; } public string Ip { get; set; } public string Name { get; set; } } public class WCSLed { public int? Id { get; set; } public string Ip { get; set; } public string Name { get; set; } public string IsDel { get; set; } public DateTime CreateTime { get; set; } public int? CreateUser { get; set; } public string CreateUserName { get; set; } } public class AjaxLeds : WCSLed { public List IPList { get; set; } public string list { get; set; } public string Operation { get; set; } } }