登录退出-优化

This commit is contained in:
tongfei
2023-11-01 16:51:37 +08:00
13 changed files with 78 additions and 55 deletions

View File

@@ -26,10 +26,6 @@ namespace WMS.Web.Core.Dto
/// </summary>
public string Specifications { get; set; }
/// <summary>
/// 供应商ID
/// </summary>
public int SupplierId { get; set; }
/// <summary>
/// 数量(装箱数量)
/// </summary>
public decimal Qty { get; set; }

View File

@@ -14,6 +14,10 @@ namespace WMS.Web.Core.Dto
/// </summary>
public int Id { get; set; }
/// <summary>
/// 供应商Id
/// </summary>
public int SupplierId { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string BoxBillNo { get; set; }

View File

@@ -46,6 +46,11 @@ namespace WMS.Web.Core.Dto.TakeStock
[Required(ErrorMessage = "盘点实际数量不能为空")]
public decimal AfterQty { get; set; }
/// <summary>
/// 盘点数量
/// </summary>
[Required(ErrorMessage = "盘点数量不能为空")]
public decimal FinalQty { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }