using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareCc.Conveyor.Entity { public class OpcWriteItem { /// /// 任务号 /// public string WTaskId { get; set; } /// /// 放货完成 /// public string WPutFinishSymbol { get; set; } /// /// 取货完成 /// public string WPickFinishSymbol { get; set; } /// /// 允许开始 /// public string WStartRotation { get; set; } /// /// 是否为入库任务 /// public string WIsInStorage { get; set; } } }