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

@@ -78,6 +78,15 @@ namespace Tnb.BasicData.Entities.Dto
/// Nullable:True
/// </summary>
public string? version { get; set; }
/// <summary>
/// 比列分子
/// </summary>
public int molecule { get; set; }
/// <summary>
/// 比列分母
/// </summary>
public int denominator { get; set; }
}
}

View File

@@ -63,5 +63,14 @@
/// 生产bom工序id
/// </summary>
public string? mbom_process_id { get; set; }
/// <summary>
/// 比列分子
/// </summary>
public int molecule { get; set; }
/// <summary>
/// 比列分母
/// </summary>
public int denominator { get; set; }
}
}