26 lines
970 B
C#
26 lines
970 B
C#
namespace Tnb.ProductionMgr.Entities
|
|
{
|
|
public class AppPrdMoTaskOneListOutput
|
|
{
|
|
public string id { get; set; }
|
|
public string mo_task_code { get; set; }
|
|
public string mo_task_status { get; set; }
|
|
public string material_id { get; set; }
|
|
public string material_id_id { get; set; }
|
|
public string material_code { get; set; }
|
|
public string material_name { get; set; }
|
|
public string mold_id { get; set; }
|
|
public string mold_id_id { get; set; }
|
|
public string mold_code { get; set; }
|
|
public string eqp_id { get; set; }
|
|
public string eqp_id_id { get; set; }
|
|
public string equip_code { get; set; }
|
|
public int? scheduled_qty { get; set; }
|
|
public int? reported_work_qty { get; set; }
|
|
public int? scrap_qty { get; set; }
|
|
|
|
public string plan_start_date { get; set; }
|
|
|
|
public string plan_end_date { get; set; }
|
|
}
|
|
} |