namespace Admin.NET.Application;
///
/// 包过程履历输出参数
///
public class WmsRecordPackageProcessOutput
{
///
/// 主键Id
///
public long? Id { get; set; }
///
/// 包装号
///
public string PackageCode { get; set; }
///
/// 生产单号
///
public string Info5 { get; set; }
///
/// 批次号
///
public string PlanNo { get; set; }
///
/// 订单号
///
public string OrderId { 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 OperRemark { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 创建人Id
///
public long? CreateUserId { get; set; }
///
/// 创建人
///
public string CreateUserName { get; set; }
}