17 lines
778 B
C#
17 lines
778 B
C#
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
|
{
|
|
public class PrdTaskManageListOutput
|
|
{
|
|
public string id { get; set; } = string.Empty;
|
|
public string? mo_task_code { get; set; } = string.Empty;
|
|
public string material_id { get; set; } = string.Empty;
|
|
public string mold_id { get; set; } = string.Empty;
|
|
public string eqp_id { get; set; } = string.Empty;
|
|
public string plan_start_date { get; set; } = string.Empty;
|
|
public string plan_end_date { get; set; } = string.Empty;
|
|
public decimal? plan_qty { get; set; }
|
|
public decimal? complete_qty { get; set; }
|
|
public string? mo_task_status { get; set; } = string.Empty;
|
|
public string? schedule_type { get; set; } = string.Empty;
|
|
}
|
|
} |