namespace Admin.NET.Application; /// /// 批次数据输出参数 /// public class Mes_BatchOrderUPI_NewOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 所在区域 /// public Admin.NET.Application.AreaCodeEnum? AreaCode { get; set; } /// /// 板料状态 /// public Admin.NET.Application.UpiStatusEnum UpiStatus { get; set; } /// /// 批次号 /// public string PlanNo { get; set; } /// /// 订单号 /// public string OrderId { get; set; } /// /// 部件条码 /// public string UPI { get; set; } /// /// 部件名称 /// public string DetailName { get; set; } /// /// 长 /// public float Length { get; set; } /// /// 宽 /// public float Width { get; set; } /// /// 厚 /// public float Thk { get; set; } /// /// 部件纹理 /// public string Matgrid { get; set; } /// /// 是否封边 /// public int? IsEB { get; set; } /// /// 打孔设备编号 /// public int? DRNum { get; set; } /// /// 是否优化包装 /// public int? IsPA { get; set; } /// /// 锯切图号 /// public int? MaterialIndeX { 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? Rotation { get; set; } /// /// 纸箱长 /// public float? Info1 { get; set; } /// /// 纸箱宽 /// public float? Info2 { get; set; } /// /// 纸箱高 /// public float? Info3 { 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; } }