using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareSda
{
//Station地址类
public class StationDBForRead
{
#region 读取到的Station信息
///
/// 心跳-分拣区域
///
[Description("心跳-分拣区域")]
public string R_HandShake_FJ { get; set; }
///
/// 模式(-分拣区域
///
[Description("模式(-分拣区域")]
public string R_Mode_FJ { get; set; }
///
/// 报警类型(-分拣区域
///
[Description("报警类型(-分拣区域")]
public string R_Warning_FJ { get; set; }
///
/// 心跳-码包区域
///
[Description("心跳-码包区域")]
public string R_HandShake_MB { get; set; }
///
/// 模式(-码包区域
///
[Description("模式(-码包区域")]
public string R_Mode_MB { get; set; }
///
/// 报警类型(-码包区域
///
[Description("报警类型(-码包区域")]
public string R_Warning_MB { get; set; }
///
/// 心跳-合包区域
///
[Description("心跳-合包区域")]
public string R_HandShake_HB { get; set; }
///
/// 模式(-合包区域
///
[Description("模式(-合包区域")]
public string R_Mode_HB { get; set; }
///
/// 报警类型(-合包区域
///
[Description("报警类型(-合包区域")]
public string R_Warning_HB { get; set; }
///
/// 心跳-封箱区域
///
[Description("心跳-封箱区域")]
public string R_HandShake_FX { get; set; }
///
/// 模式(-封箱区域
///
[Description("模式(-封箱区域")]
public string R_Mode_FX { get; set; }
///
/// 报警类型(-封箱区域
///
[Description("报警类型(-封箱区域")]
public string R_Warning_FX { get; set; }
#region 读的站点
public List R_StationForReadCommList { get; set; }
#endregion
#endregion
}
}