This commit is contained in:
tongfei
2023-12-26 15:49:38 +08:00
2 changed files with 29 additions and 28 deletions

View File

@@ -16,6 +16,11 @@ namespace WMS.Web.Core.Dto.ChangeBoxRecord
[Column("单据号")]
public string BillNo { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
[Column("规格型号")]
public string Specifications { get; set; }
/// <summary>
/// 物料名称
/// </summary>
[Column("物料名称")]
@@ -25,11 +30,7 @@ namespace WMS.Web.Core.Dto.ChangeBoxRecord
/// </summary>
[Column("物料编码")]
public string MaterialNumber { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
[Column("规格型号")]
public string Specifications { get; set; }
/// <summary>
/// 序列号
/// </summary>
@@ -41,29 +42,29 @@ namespace WMS.Web.Core.Dto.ChangeBoxRecord
[Column("原箱号")]
public string SrcBox { get; set; }
/// <summary>
/// 目标箱子
/// </summary>
[Column("目标箱号")]
public string DestBox { get; set; }
/// <summary>
/// 原仓位
/// </summary>
[Column("原仓位")]
public string SrcSubStock { get; set; }
/// <summary>
/// 目标箱子
/// </summary>
[Column("目标箱号")]
public string DestBox { get; set; }
/// <summary>
/// 目标仓位
/// </summary>
[Column("现仓位")]
public string DestSubStock { get; set; }
/// <summary>
/// 操作人
/// </summary>
[Column("操作人")]
public string Creator { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[Column("操作时间")]
public string CreateTime { get; set; }
/// <summary>
/// 操作人
/// </summary>
[Column("操作人")]
public string Creator { get; set; }
}
}

View File

@@ -13,11 +13,21 @@ namespace WMS.Web.Core.Dto.MoveBoxRecord
[Column("单据号")]
public string BillNo { get; set; }
/// <summary>
/// 类型:整箱移货上级,整箱移货下级
/// </summary>
[Column("操作类型")]
public string Type { get; set; }
/// <summary>
/// 箱号
/// </summary>
[Column("箱号")]
public string Box { get; set; }
/// <summary>
/// 数量
/// </summary>
[Column("数量")]
public decimal Qty { get; set; }
/// <summary>
/// 原仓位
/// </summary>
[Column("原仓位")]
@@ -28,24 +38,14 @@ namespace WMS.Web.Core.Dto.MoveBoxRecord
[Column("新仓位")]
public string DestSubStock { get; set; }
/// <summary>
/// 数量
/// 操作时间
/// </summary>
[Column("数量")]
public decimal Qty { get; set; }
/// <summary>
/// 类型:整箱移货上级,整箱移货下级
/// </summary>
[Column("操作类型")]
public string Type { get; set; }
[Column("操作时间")]
public string CreateTime { get; set; }
/// <summary>
/// 操作人
/// </summary>
[Column("操作人")]
public string Creator { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[Column("操作时间")]
public string CreateTime { get; set; }
}
}