using System; using System.Collections.Generic; using System.Net.Cache; using System.Text; namespace DllEapEntity.OFILM { /// /// 机台当前状态及程序信息 /// public class MacRecipeDto { /// /// 机台ID /// public int MacId { get; set; } /// /// 机台编号 /// public string MacCode { get; set; } /// /// 区域ID /// public int RegionId { get; set; } /// /// 工序 /// public string PCode { get; set; } /// /// 程序 /// public string ProgramName { get; set; } /// /// 实际IP /// public string RealIp { get; set; } /// /// MAC地址 /// public string MacAddress { get; set; } /// /// 状态编号 /// public string StatusCode { get; set; } /// /// 状态名称 /// public string StatusName { get; set; } /// /// 园区 /// public string Factory { get; set; } /// /// 楼层 /// public string Floor { get; set; } /// /// 线体 /// public string Line { get; set; } public int? Red { get; set; } public int? Green { get; set; } public int? Blue { get; set; } public int StatusID { get; set; } public DateTime STime { get; set; } public DateTime ETime { get; set; } /// /// 系统设置IP /// public string IpAddress { get; set; } public string FVersion { get; set; } public int RealIpState { get; set; } public string AppletV { get; set; } public int AppletS { get; set; } public string AppletSName { get; set; } public string PlantName { get; set; } public string FactoryName { get; set; } } }