using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Comm.MES_Info.Request { public class agvTransferListPara : BasicSN { /// /// 转移单号 /// public string transferListID { get; set; } /// /// 车轮物料编码 /// public string materialCode { get; set; } /// /// 技术状态 /// public string drawingNoVer { get; set; } /// /// 源库房名称 /// public string fromWarehouse { get; set; } /// /// 目标库房名称 /// public string toWarehouse { get; set; } /// /// 操作人员 /// public string Operator { get; set; } /// /// 操作时间 /// public DateTime updateTime { get; set; } /// /// 车轮信息 /// public List details { get; set; } } }