提交代码

This commit is contained in:
hehaibing-1996
2024-05-03 11:04:59 +08:00
parent 97888c6978
commit d283924ae1
48 changed files with 802 additions and 509 deletions

View File

@ -27,7 +27,15 @@ namespace WCS.Model.ApiModel.MatInventoryDetail
public DateTime InstoreTime { get; set; } = DateTime.Now;
public string InstoreUser { get; set; }
public bool IsLocked { get; set; } = false;
public bool IsLocked { get; set; }
public string IsLockedStr
{
get
{
return IsLocked ? "是" : "否";
}
}
public int RowNumber { get; set; }
public bool IsSelected { get; set; }
}