bom中数量变成分子分母2个字段

This commit is contained in:
2024-05-15 14:45:08 +08:00
parent 977f138445
commit 50b8dedc7d
10 changed files with 86 additions and 10 deletions

View File

@@ -73,5 +73,13 @@ public partial class BasEbomD : BaseEntity<string>
/// 工艺路线名称
/// </summary>
public string? route_name { get; set; }
/// <summary>
/// 比列分子
/// </summary>
public int molecule { get; set; }
/// <summary>
/// 比列分母
/// </summary>
public int denominator { get; set; }
}