提交代码

This commit is contained in:
hehaibing-1996
2024-04-25 09:48:38 +08:00
parent aaf7c17562
commit a1199028b3
22 changed files with 861 additions and 196 deletions

View File

@ -10,7 +10,6 @@ namespace WCS.Model
{
public string MatSn { get; set; } = string.Empty;
public string ShelfCode { get; set; } = string.Empty;
public string IpAddress { get; set; } = string.Empty;
}
}

View File

@ -21,7 +21,18 @@ namespace WCS.Model.ApiModel.MatInventoryDetail
public int TotalQty { get; set; }
public int NeedQty { get; set; } = 0;
public int needQty = 0;
public int NeedQty
{
get { return needQty; }
set
{
needQty = value;
OnPropertyChanged(nameof(needQty));
}
}
public bool IsSelected
{