namespace Admin.NET.Application;
///
/// 库存信息输出参数
///
public class WmsStockQuanOutput
{
///
/// 主键Id
///
public long? Id { get; set; }
///
/// 库位编码
///
public string PlaceCode { get; set; }
///
/// 进入时间
///
public DateTime? InTime { get; set; }
///
/// 部件条码
///
public string Upi { get; set; }
///
/// 部件名称
///
public string DetailName { get; set; }
///
/// 批次
///
public string PlanNo { get; set; }
///
/// 订单号
///
public string OrderId { get; set; }
///
/// 包装号
///
public string PackageCode { get; set; }
///
/// 长
///
public float Length { get; set; }
///
/// 宽
///
public float Width { get; set; }
///
/// 厚
///
public float Thk { get; set; }
///
/// 库存状态
///
public Admin.NET.Application.StockStatusEnum StockStatus { get; set; }
///
/// 库存状态名称
///
public string StockStatusName { get; set; }
///
/// 操作原因
///
public string OperReason { get; set; }
///
/// 操作人
///
public string OperUser { get; set; }
///
/// 操作时间
///
public DateTime? OperTime { get; set; }
///
/// 锁定状态
///
public Admin.NET.Application.LockStatusEnum LockStatus { get; set; }
///
/// 锁定原因
///
public string LockReason { get; set; }
///
/// 锁定人
///
public string LockUser { get; set; }
///
/// 锁定时间
///
public DateTime? LockTime { get; set; }
///
/// 备注
///
public string Remarks { 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 class WmsPackListOutput
{
public string PackageCode { get; set; } // 包装代码
public int Count { get; set; } // 对应的数量
public bool IsPack { get; set; }
}
///
/// 齐套入参
///
public class WmsKittingListOutput
{
public string OrderId { get; set; } // 单号
public int Count { get; set; } // 对应的数量
public bool IsKitting { get; set; }
}