using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MESClassLibrary.Model { public class InjectionRecordDownReasonModel { public string PlanID { get; set; } public long DownTime { get; set; } public string DownTypeName { get; set; } public string Reason { get; set; } } }