This commit is contained in:
DEVICE8\12494
2023-05-28 21:17:49 +08:00
parent 56affbfd19
commit c6522831b4
14 changed files with 621 additions and 189 deletions

View File

@@ -70,5 +70,20 @@ namespace Tnb.ProductionMgr.Entities
/// </summary>
[SugarColumn(IsIgnore = true)]
public string material_property { get; set; }
/// <summary>
/// 工序名称
/// </summary>
[SugarColumn(IsIgnore = true)]
public string process_name { get; set; }
/// <summary>
/// 工序编码
/// </summary>
[SugarColumn(IsIgnore = true)]
public string process_code { get; set; }
/// <summary>
/// 产线编码
/// </summary>
[SugarColumn(IsIgnore = true)]
public string workline_code { get; set; }
}
}

View File

@@ -52,7 +52,7 @@ public partial class PrdMoTaskDefectRecord : BaseEntity<string>
/// <summary>
/// 报废数量
/// </summary>
public int? scrap_qty { get; set; }
public int scrap_qty { get; set; }
/// <summary>
/// 生产任务单状态
@@ -81,6 +81,6 @@ public partial class PrdMoTaskDefectRecord : BaseEntity<string>
/// <summary>
/// 任务类型
/// </summary>
public int mo_task_type { get; set; }
public string mo_task_type { get; set; }
}

View File

@@ -47,7 +47,7 @@ public partial class PrdReportRecord : BaseEntity<string>
/// <summary>
/// 完成数量
/// </summary>
public int? completed_qty { get; set; }
public int completed_qty { get; set; }
/// <summary>
/// 任务单号
@@ -60,5 +60,13 @@ public partial class PrdReportRecord : BaseEntity<string>
/// <summary>
/// 任务类型
/// </summary>
public int mo_task_type { get; set; }
public string mo_task_type { get; set; }
/// <summary>
/// 生产任务id
/// </summary>
public string mo_task_id { get; set; }
/// <summary>
/// 已报工数量
/// </summary>
public int reported_work_qty { get; set; }
}