namespace Admin.NET.Application; /// /// 板件队列数据输出参数 /// public class Mes_Upi_LineQueueOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 部件条码 /// public string Upi { get; set; } /// /// 包装号 /// public string PackageCode { get; set; } /// /// 次序 /// public int Shelf { get; set; } /// /// 生产单号 /// public string Info5 { get; set; } /// /// 批次号 /// public string PlanNo { get; set; } /// /// 订单号 /// public string OrderId { get; set; } /// /// 所在区域 /// public Admin.NET.Application.AreaCodeEnum? AreaCode { get; set; } /// /// 板料状态 /// public Admin.NET.Application.UpiStatusEnum UpiStatus { get; set; } /// /// 标记 /// public Admin.NET.Application.UpiFlagEnum? UpiFlag { get; set; } /// /// 位置 /// public string Location { get; set; } /// /// 部件名称 /// public string DetailName { get; set; } /// /// 材料 /// public string Info18 { get; set; } /// /// 备注 /// public string OperRemark { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 创建人Id /// public long? CreateUserId { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } }