namespace Tnb.EquipMgr.Entities.Dto { public class CheckItemOutput { /// /// 计划ID /// public string plan_id { get; set; } /// /// 模具ID /// public string mold_id { get; set; } /// /// 保养组id /// public string item_group_id { get; set; } /// /// 保养组名称 /// public string item_group_name { get; set; } /// /// 保养项id /// public string item_id { get; set; } /// /// 保养项名称 /// public string item_name { get; set; } /// /// 保养项,保养状态 /// public int status { get; set; } = 0; } }