using iWareSda.Devices._3_Station.StationModel; using System.Collections.Generic; using System.ComponentModel; namespace iWareSda { /// /// Station展示实体类 /// public class StationDB2Obj { #region 写入的Station信息 /// /// 心跳 /// [Description("心跳")] public bool W_HandShake { get; set; } /// /// 1015重新扫码,写为true表示重新扫码,写为false,表示关闭重新扫码。当wcs读到值后,就写为false /// [Description("1015重新扫码")] public bool W_1015_ReScan { get; set; } /// /// 1019重新扫码,写为true表示重新扫码,写为false,表示关闭重新扫码。当wcs读到值后,就写为false /// [Description("1019重新扫码")] public bool W_1019_ReScan { get; set; } /// /// Station_完成ACK /// [Description("Station_完成ACK")] public bool W_Station_FinishACK { get; set; } /// /// 1002扫描失败信号 /// [Description("1002扫描失败信号")] public bool W_1002_ScanFailACK { get; set; } /// /// 1004扫描失败信号 /// [Description("1004扫描失败信号")] public bool W_1004_ScanFailACK { get; set; } /// /// 1006扫描失败信号 /// [Description("1006扫描失败信号")] public bool W_1006_ScanFailACK { get; set; } /// /// 1007扫描失败信号 /// [Description("1007扫描失败信号")] public bool W_1007_ScanFailACK { get; set; } /// /// 1002扫描成功信号 /// [Description("1002扫描成功信号")] public bool W_1002_ScanSuccessACK { get; set; } /// /// 1004扫描成功信号 /// [Description("1004扫描成功信号")] public bool W_1004_ScanSuccessACK { get; set; } /// /// 1006扫描成功信号 /// [Description("1006扫描成功信号")] public bool W_1006_ScanSuccessACK { get; set; } /// /// 1007扫描成功信号 /// [Description("1007扫描成功信号")] public bool W_1007_ScanSuccessACK { get; set; } /// /// 出库发动机的型号 【Editby shaocx,2023-07-23】 /// [Description("出库发动机的型号")] public string W_Out_MaterialModel { get; set; } /// /// 出库发动机的订货号 【Editby shaocx,2023-07-23】 /// [Description("出库发动机的订货号")] public string W_Out_OrderNo { get; set; } /// /// 出库发动机的编号 【Editby shaocx,2023-07-23】 /// [Description("出库发动机的编号")] public string W_Out_SerialNumber { get; set; } #region 写的站点 public List W_StationForWriteCommList { get; set; } #endregion #endregion #region 读取到的Station信息 /// /// 心跳 /// [Description("心跳")] public int R_HandShake { get; set; } /// /// Station编号 /// [Description("Station编号")] public string R_StationNo { get; set; } /// /// 1015扫码 /// [Description("1015扫码")] public string R_1015_Scan { get; set; } /// /// 1019扫码 /// [Description("1019扫码")] public string R_1019_Scan { get; set; } /// /// 1019发动机的扫码 /// [Description("1019发动机的扫码")] public string R_1019_CargoNoScan { get; set; } /// /// 1002扫码 /// [Description("1002扫码")] public string R_1002_Scan { get; set; } /// /// 1004扫码 /// [Description("1004扫码")] public string R_1004_Scan { get; set; } /// /// 1006扫码 /// [Description("1006扫码")] public string R_1006_Scan { get; set; } /// /// 1007扫码 /// [Description("1007扫码")] public string R_1007_Scan { get; set; } /// /// 1009的1层检测光电 /// [Description("1009的1层检测光电")] public bool R_1009_High1 { get; set; } /// /// 1009的2层检测光电 /// [Description("1009的2层检测光电")] public bool R_1009_High2 { get; set; } /// /// 1009的3层检测光电 /// [Description("1009的3层检测光电")] public bool R_1009_High3 { get; set; } /// /// Station任务完成 /// [Description("Station任务完成")] public bool R_Station_Finish { get; set; } /// /// Station当前坐标 /// [Description("Station当前坐标")] public int R_Station_Coordinate { get; set; } #region 读的站点 public List R_StationForReadCommList { get; set; } #endregion #endregion } }