生产提报代码提交

This commit is contained in:
DEVICE8\12494
2023-05-25 22:51:56 +08:00
parent 5601d3a186
commit 7dcb35b455
11 changed files with 272 additions and 140 deletions

View File

@@ -75,6 +75,14 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
/// 预计完工时间
/// </summary>
public DateTime? estimated_end_date { get; set; }
/// <summary>
/// 工序编码
/// </summary>
public string process_code { get; set; }
/// <summary>
/// 工序名称
/// </summary>
public string process_name { get; set;}
}

View File

@@ -33,6 +33,10 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
/// 物料名称
/// </summary>
public string material_name { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
public string material_standard { get; set; }
/// <summary>
/// 工单类型1-正常工单、2-返工工单、3-试制工单

View File

@@ -168,5 +168,8 @@ public partial class PrdMoTask : BaseEntity<string>
/// 工序任务量
/// </summary>
public int? process_task_qty { get; set; }
/// <summary>
/// 工序id
/// </summary>
public string process_id { get; set; }
}

View File

@@ -31,5 +31,44 @@ namespace Tnb.ProductionMgr.Entities
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? mold_cavity_qty { get; set; }
/// <summary>
/// 任务计划数
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? icmo_qty { get; set; }
/// <summary>
/// 已报工数量
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? reported_work_qty { get; set; }
/// <summary>
/// 提报数
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? reported_qty { get; set; }
/// <summary>
/// 生产数量
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? prd_qty { get; set; }
/// <summary>
/// 设备编码
/// </summary>
[SugarColumn(IsIgnore = true)]
public string eqp_code { get; set; }
/// <summary>
/// 物料编码
[SugarColumn(IsIgnore = true)]
public string material_code { get; set; }
/// <summary>
/// 物料名称
[SugarColumn(IsIgnore = true)]
public string material_name { get; set; }
/// <summary>
/// 物料属性
/// </summary>
[SugarColumn(IsIgnore = true)]
public string material_property { get; set; }
}
}

View File

@@ -53,4 +53,6 @@ public partial class PrdMoTaskDefect : BaseEntity<string>
/// </summary>
public int scrap_qty { get; set; }
public int mo_task_type { get; set; }
}

View File

@@ -78,5 +78,9 @@ public partial class PrdMoTaskDefectRecord : BaseEntity<string>
/// 任务单编号
/// </summary>
public string? mo_task_code { get; set; }
/// <summary>
/// 任务类型
/// </summary>
public int mo_task_type { get; set; }
}

View File

@@ -53,5 +53,12 @@ public partial class PrdReportRecord : BaseEntity<string>
/// 任务单号
/// </summary>
public string? mo_task_code { get; set; }
/// <summary>
/// 任务单状态
/// </summary>
public string status { get; set; }
/// <summary>
/// 任务类型
/// </summary>
public int mo_task_type { get; set; }
}