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

@@ -28,5 +28,14 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public string material_code { get; set; }
public string category_id { get; set; }
public decimal? num { get; set; }
/// <summary>
/// 比列分子
/// </summary>
public int molecule { get; set; }
/// <summary>
/// 比列分母
/// </summary>
public int denominator { get; set; }
}
}