提报增加重量

This commit is contained in:
2024-06-20 14:32:48 +08:00
parent def9290c37
commit 9fead8d3c9
5 changed files with 18 additions and 1 deletions

View File

@@ -108,5 +108,9 @@
/// </summary>
public string location_code { get; set; }
/// <summary>
/// 称重重量
/// </summary>
public decimal weight { get; set; }
}
}

View File

@@ -31,5 +31,10 @@ namespace Tnb.ProductionMgr.Entities.Dto
public string? create_time { get; set; } = string.Empty;
public string? batch { get; set; } = string.Empty;
public string material_box_code { get; set; }
/// <summary>
/// 称重重量
/// </summary>
public decimal weight { get; set; }
}
}

View File

@@ -144,5 +144,10 @@ public partial class PrdReport : BaseEntity<string>
/// 入库仓库
/// </summary>
public string warehouse_id { get; set; }
/// <summary>
/// 称重重量
/// </summary>
public decimal weight { get; set; }
}