namespace Tnb.EquipMgr.Entities.Dto { /// /// 保养规则关联模具列表输出参数 /// public class MaintainRuleMoldListOutput { /// /// 模具Id /// public string mold_id { get; set; } /// /// 模具编码 /// public string mold_code { get; set; } /// /// 模具名称 /// public string mold_name { get; set; } /// /// 项目组Id /// public string item_group_id { get; set; } /// /// 项目名称 /// public string item_group_name { get; set; } } }