using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// RCS发送 AGV编码接收实体类 [热前出库] /// public class GetAGVParamForPreheating { /// /// 任务ID /// public string taskNo { get; set; } /// /// 物料状态 /// public string materialStatus { get; set; } /// /// AGV编码 /// public string agvCode { get; set; } /// /// 发送时间 /// public string sendTime { get; set; } } }