This commit is contained in:
2023-07-05 09:52:49 +08:00
parent 6779adab6f
commit af948e482d
2 changed files with 107 additions and 25 deletions

View File

@@ -0,0 +1,31 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class ReportRecordListOutput
{
public string id { get; set; }
public string? masterial_code { get; set; } = string.Empty;
public string? masterial_name { get; set; } = string.Empty;
public string? mo_task_code { get; set; } = string.Empty;
public string? mo_task_id { get; set; } = string.Empty;
public string? mo_task_id_id { get; set; } = string.Empty;
public string? mo_task_type { get; set; } = string.Empty;
public string? plan_end_date { get; set; } = string.Empty;
public int? plan_qty { get; set; }
public int? completed_qty { get; set; }
public string? plan_start_date { get; set; } = string.Empty;
public int? reported_work_qty { get; set; }
public string? status { get; set; } = string.Empty;
public List<ReportRecordListChildrenOutput>? tablefield107 { get; set; } = new List<ReportRecordListChildrenOutput>();
}
public class ReportRecordListChildrenOutput
{
public int? reported_qty { get; set; }
public string? create_id { get; set; } = string.Empty;
public string? create_id_id { get; set; } = string.Empty;
public string? create_time { get; set; } = string.Empty;
}
}