namespace Admin.NET.Application;
///
/// 盘点记录输出参数
///
public class WmsInventoryCheckRecordOutput
{
///
/// 主键Id
///
public long? Id { get; set; }
///
/// 盘点单号ID
///
public long? OrderId { get; set; }
///
/// 盘点单号
///
public string OrderNo { get; set; }
///
/// 库区编码
///
public string AreaCode { get; set; }
///
/// 库区名称
///
public string AreaName { get; set; }
///
/// 库位编码
///
public string PlaceCode { get; set; }
///
/// 库位名称
///
public string PlaceName { get; set; }
///
/// 跟踪码
///
public string SNCode { get; set; }
///
/// 批次
///
public string Batch { get; set; }
///
/// 物料编码
///
public string MaterialCode { get; set; }
///
/// 物料名称
///
public string MaterialName { get; set; }
///
/// 容器编码
///
public string ContainerCode { get; set; }
///
/// 库存数量
///
public decimal? Quantity { get; set; }
///
/// 盘点数量
///
public decimal? CheckQuantity { get; set; }
///
/// 盘点状态
///
public Admin.NET.Application.CheckStatusEnum? CheckStatus { get; set; }
///
/// 盘点状态名称
///
public string CheckStatusName { get; set; }
///
/// 盘点结果
///
public Admin.NET.Application.CheckResultEnum? CheckResult { get; set; }
///
/// 盘点结果名称
///
public string CheckResultName { get; set; }
///
/// 盘点分类
///
public Admin.NET.Application.CheckOperatorClassifyEnum? CheckOperatorClassify { get; set; }
///
/// 盘点分类名称
///
public string CheckOperatorClassifyName { 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; }
}