Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/PrdMoListOuput.cs
2024-09-30 15:49:54 +08:00

42 lines
1.3 KiB
C#

namespace Tnb.ProductionMgr.Entities.Dto
{
public class PrdMoListOuput
{
public string id { get; set; }
public string mo_type { get; set; }
public string mo_source { get; set; }
public string mo_code { get; set; }
public string plan_start_date { get; set; }
public string plan_end_date { get; set; }
public string material_id { get; set; }
public decimal? plan_qty { get; set; }
public string unit_id { get; set; }
public string mo_status { get; set; }
public string ebom_version { get; set; }
public string? remark { get; set; }
public string combine_mo_code { get; set; }
public string material_id_id { get; set; }
public List<PrdMoListOuput> children { get; set; } = new List<PrdMoListOuput>();
/// <summary>
/// 物料规格
/// </summary>
public string? f_flowtaskid { get; set; }
/// <summary>
/// 物料型号
/// </summary>
public string? f_flowid { get; set; }
/// <summary>
/// 已报工数量
/// </summary>
public decimal? reported_work_qty { get; set; } = 0;
/// <summary>
/// 报废数量
/// </summary>
public decimal? scrap_qty { get; set; } = 0;
}
}