using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tnb.ProductionMgr.Entities; namespace Tnb.ProductionMgr.Entities.Dto { /// /// 模具列表输出参数 /// public class MoldListOutput { /// /// 模具名称 /// public string mold_name { get; set; } /// /// 物料名称 /// public string material_name { get; set; } /// /// 物料编号 /// public string material_code { get; set; } /// /// 模具编号 /// public string mold_code { get; set; } /// /// 模具型号 /// public string mold_type_code { get; set; } /// /// 可用台数 /// public int available_stations { get; set; } public string mold_id { get; set;} } }