bug
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user