This commit is contained in:
2023-06-14 16:52:20 +08:00
parent edf3f135b1
commit 030d375871
7 changed files with 350 additions and 125 deletions

View File

@@ -0,0 +1,17 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class PrdTaskManageListOutput
{
public string id { get; set; }
public string mo_task_code { get; set; }
public string material_id { get; set; }
public string mold_id { get; set; }
public string eqp_id { get; set; }
public string plan_start_date { get; set; }
public string plan_end_date { get; set; }
public int? plan_qty { get; set; }
public int? complete_qty { get; set; }
public string mo_task_status { get; set; }
public string schedule_type { get; set; }
}
}

View File

@@ -78,6 +78,11 @@ public partial class PrdMoTask : BaseEntity<string>
/// 已完工数量
/// </summary>
public int? complete_qty { get; set; }
/// <summary>
/// 已报工数量
/// </summary>
public int? reported_work_qty { get; set; }
/// <summary>
/// 报废数量

View File

@@ -38,11 +38,6 @@ namespace Tnb.ProductionMgr.Entities
[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)]