using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IWareCC.ChaiDie.Entity
{
public class OpcReadItem
{
///
/// 心跳
///
public string HandShake{get;set;}
///
/// 设备编号
///
public string ChaiDeiNo{get;set;}
///
/// 模式
///
public string Mode{get;set;}
///
/// 是否有报警
///
public string Alarm{get;set;}
///
/// 报警编号
///
public string AlarmCode{get;set;}
///
/// 状态
///
public string State{get;set;}
///
/// 接收写入成功反馈
///
public string ACK{get;set;}
///
/// 光电1
///
public string Ph1{get;set;}
///
/// 光电2
///
public string Ph2 { get; set; }
///
/// 是否空满盘(0:置位;1空盘;2满盘)
///
public string EmptyStatus { get; set; }
}
}