namespace VirtualConveyor.Conveyor.Entity
{
public class OpcWriteItem
{
///
/// 任务号
///
public string TaskId { get; set; }
///
/// 是否到位
///
public string Occupied { get; set; }
///
/// 允许放货(输送机到位)
///
public string PutDownLicense { get; set; }
///
/// 允许取货(输送机到位)
///
public string PickUpLicense { get; set; }
///
/// 滚动开始
///
public string StartRotation { get; set; }
///
/// 手动允许取货(输送机空闲)
///
public string PickUpLicenseManual { get; set; }
///
/// 滚道完成
///
public string LayingOffComplete { get; set; }
///
/// 人工检查结果
///
public string CheckResult { get; set; }
}
}