41 lines
1.4 KiB
C#
41 lines
1.4 KiB
C#
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
|
{
|
|
public class MaterialPreparationPlanOutput
|
|
{
|
|
public string mo_task_id { get; set; }
|
|
public string mo_task_code { get; set; }
|
|
public string material_id { get; set; }
|
|
public string material_code { get; set; }
|
|
public int? num { get; set; }
|
|
public List<MaterialPreparationPlanDOutput> children { get; set; } = new List<MaterialPreparationPlanDOutput>();
|
|
}
|
|
|
|
public class MaterialPreparationPlanDOutput
|
|
{
|
|
public int? rate_num { get; set; }
|
|
public string mo_task_id { get; set; }
|
|
public string mo_task_code { get; set; }
|
|
public string parent_id { get; set; }
|
|
public string material_id { get; set; }
|
|
public string material_code { get; set; }
|
|
public string workstation_id { get; set; }
|
|
public List<MaterialPreparationPlanDDOutput> children { get; set; } = new List<MaterialPreparationPlanDDOutput>();
|
|
}
|
|
|
|
public class MaterialPreparationPlanDDOutput
|
|
{
|
|
public string material_id { get; set; }
|
|
public string material_code { get; set; }
|
|
public string category_id { get; set; }
|
|
public decimal? num { get; set; }
|
|
/// <summary>
|
|
/// 比列分子
|
|
/// </summary>
|
|
public decimal molecule { get; set; }
|
|
/// <summary>
|
|
/// 比列分母
|
|
/// </summary>
|
|
public decimal denominator { get; set; }
|
|
|
|
}
|
|
} |