namespace Tnb.EquipMgr.Entities.Dto
{
///
/// 物料列表输出类
///
public class MaterialListOutput
{
public string id { get; set; }
public string code { get; set; }
public string name { get; set; }
public string material_group { get; set; }
///
/// 物料规格
///
public string? material_specification { get; set; }
///
/// 物料型号
///
public string? material_standard { get; set; }
public int real_cavity_qty { get; set; }
}
///
/// 模具列表输出类
///
public class MoldListOutput
{
public string id { get; set; }
public string mold_code { get; set; }
public string mold_name { get; set; }
public int cavity_qty { get; set; }
public int real_cavity_qty { get; set; }
}
}