This commit is contained in:
DEVICE8\12494
2023-05-18 18:44:16 +08:00
parent 82c94d9707
commit 9d30038a7d
23 changed files with 618 additions and 166 deletions

View File

@@ -25,6 +25,10 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
/// </summary>
public string material_code { get; set; }
/// <summary>
/// 产线id
/// </summary>
public string workline_id { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string material_name { get; set; }
@@ -52,6 +56,22 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
/// 工序任务量
/// </summary>
public int? process_task_qty { get; set; }
/// <summary>
/// bom_id
/// </summary>
public string bom_id { get; set; }
/// <summary>
/// bom版本
/// </summary>
public string bom_version { get; set; }
/// <summary>
/// 预计开始时间
/// </summary>
public DateTime? estimated_start_date { get; set; }
/// <summary>
/// 预计结束时间
/// </summary>
public DateTime? estimated_end_date { get; set; }
}
}