生成条码优化

This commit is contained in:
hehaibing-1996
2024-05-13 09:18:49 +08:00
parent f57b79d0fc
commit 88cbe5d052
22 changed files with 262 additions and 220 deletions

View File

@ -9,6 +9,11 @@ namespace WCS.Model.ApiModel.MatBaseInfo
{
public MatBaseInfoModel MatBaseInfo { get; set; }
/// <summary>
/// 本次生成的批次号
/// </summary>
public string MatBatch { get; set; }
/// <summary>
/// 每盘数量
/// </summary>

View File

@ -25,14 +25,6 @@ namespace WCS.Model.ApiModel.Stocktaking
#endregion
public bool IsStocktaking { get; set; }
public string IsStocktakingStr
{
get
{
return
IsStocktaking ? "是" : "否";
}
}
public int StocktakingQty { get; set; }
public DateTime UpdateTime { get; set; }
public string UpdateUser { get; set; }