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; } /// /// 模具状态 /// public string mold_status { get; set; } // /// // /// 进度条 // /// // public string progress_bar { get; set; } public int? complete_qty { get; set; } public int? scheduled_qty { get; set; } /// /// 领用设备 /// public string equip_name { get; set; } } }