1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMS.Info.Models.WCSDeviceMonitor.WireRods
- {
- public class WCSDevicePacks
- {
- public List<AreasDevice> AreasDevices { get; set; }
- public List<SRMStation> SRMStations { get; set; }
- public List<WCSStation> WCSStations { get; set; }
- public List<WCSSRM> WCSSRMs { get; set; }
- public List<WCSAGV> WCSAGVs { get; set; }
- public List<FaultInfo> FaultInfos { get; set; }
- public DateTime Frame { get; set; }
- public string FrameTicks
- {
- get
- {
- return Frame.Ticks.ToString();
- }
- }
- public string Index { get; set; }
- }
- public class AreasDevice
- {
- /// <summary>
- /// 区域
- /// </summary>
- public string Areas { get; set; }
- /// <summary>
- /// 故障信息汇总
- /// </summary>
- public bool IsFault { get; set; }
- /// <summary>
- /// 自动 手动
- /// </summary>
- public bool IsAuto { get; set; }
- public List<WCSStation> WCSStations { get; set; }
- }
- }
|