namespace Admin.NET.Application; /// /// 批次数据输出参数 /// public class Mes_BatchOrderUPI_NewOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 部件条码 /// public string UPI { get; set; } /// /// 批次号 /// public string PlanNo { get; set; } /// /// 订单号 /// public string OrderId { get; set; } /// /// 生产单号 /// public string Info5 { get; set; } /// /// 所在区域 /// public Admin.NET.Application.AreaCodeEnum? AreaCode { get; set; } /// /// 板料状态 /// public Admin.NET.Application.UpiStatusEnum UpiStatus { get; set; } /// /// 部件名称 /// public string DetailName { get; set; } /// /// 长 /// public float Length { get; set; } /// /// 宽 /// public float Width { get; set; } /// /// 厚 /// public float Thk { get; set; } /// /// 是否优化包装 /// public int? IsPA { get; set; } /// /// 包装号 /// public string PackageCode { get; set; } /// /// 包装X坐标 /// public float? MachineXCenter { get; set; } /// /// 包装Y坐标 /// public float? MachineYCenter { get; set; } /// /// 包装Z坐标 /// public float? MachineZCenter { get; set; } /// /// 层数 /// public int? Sequence { get; set; } /// /// 次序 /// public int? Shelf { get; set; } /// /// 纸箱长 /// public float? Info1 { get; set; } /// /// 纸箱宽 /// public float? Info2 { get; set; } /// /// 纸箱高 /// public float? Info3 { get; set; } /// /// 销售合同单号 /// public string Info4 { get; set; } /// /// 第几包 /// public string Info6 { get; set; } /// /// 经销店名称 /// public string Info7 { get; set; } /// /// 产品名称 /// public string Info8 { get; set; } /// /// 客户名称 /// public string Info10 { get; set; } /// /// 包装编码 /// public string Info9 { get; set; } /// /// 自提or发货 /// public string Info11 { get; set; } /// /// 包装部件总数量 /// public string Info12 { get; set; } /// /// 包装面积 /// public string Info13 { get; set; } /// /// 部件名称 /// public string Info14 { get; set; } /// /// 部件数量 /// public int? Info15 { get; set; } /// /// 部件尺寸 /// public string Info16 { get; set; } /// /// 机械臂是否旋转 /// public string Info17 { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 修改时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建人Id /// public long? CreateUserId { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } /// /// 修改人Id /// public long? UpdateUserId { get; set; } /// /// 修改人 /// public string UpdateUserName { get; set; } /// /// 软删除 /// public bool IsDelete { get; set; } /// /// 标记 /// public Admin.NET.Application.UpiFlagEnum? UpiFlag { get; set; } }