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; } } }