This commit is contained in:
DEVICE8\12494
2023-05-25 14:09:09 +08:00
parent 76f3b0768b
commit 9e3832f6f4
5 changed files with 197 additions and 111 deletions

View File

@@ -26,7 +26,7 @@ namespace Tnb.BasicData.Entities.Dto
/// <summary>
/// 物料型号
/// </summary>
public string material_category_code { get; set; }
public string material_standard { get; set; }
/// <summary>
///输出数量
/// </summary>
@@ -44,6 +44,10 @@ namespace Tnb.BasicData.Entities.Dto
/// </summary>
public string bom_id { get; set; }
/// <summary>
/// 工艺路线id
/// </summary>
public string route_id { get; set; }
/// <summary>
/// 工序id
/// </summary>
public string process_id { get; set; }
@@ -56,5 +60,9 @@ namespace Tnb.BasicData.Entities.Dto
/// 工艺路线名称
/// </summary>
public string route_name { get; set; }
/// <summary>
/// 工序排序序号
/// </summary>
public long? ordinal { get; set; }
}
}