15 lines
513 B
C#
15 lines
513 B
C#
namespace Tnb.ProductionMgr.Entities.Dto
|
|
{
|
|
public class PrdMoTaskIssueListOutput
|
|
{
|
|
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 mo_task_status { get; set; }
|
|
public int? plan_qty { get; set; }
|
|
public int? scheduled_qty { get; set; }
|
|
public string create_time { get; set; }
|
|
}
|
|
} |