改箱增加字段

This commit is contained in:
18942506660
2024-03-15 09:47:15 +08:00
parent d7e9bab58a
commit 3172aeaf9d
3 changed files with 22 additions and 0 deletions

View File

@@ -66,5 +66,15 @@ namespace WMS.Web.Core.Dto.ChangeBoxRecord
/// </summary>
[Column("操作人")]
public string Creator { get; set; }
/// <summary>
/// 数量
///</summary>
[Column("数量")]
public decimal Qty { get; set; }
/// <summary>
/// 目标箱组织编码
/// </summary>
[Column("目标箱组织")]
public string DestBoxOrg { get; set; }
}
}