using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.dev.Dto { /// /// 设备保全率查询对象 /// public class DeviceUptimeQueryDto : PagerInfo { public string Id { get; set; } public string targetValue { get; set; } public string ActualValue { get; set; } public string Workshop { get; set; } public string FillTime { get; set; } public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } public string Type { get; set; } } /// /// 设备保全率输入输出对象 /// public class DeviceUptimeDto { public string Id { get; set; } public string targetValue{ get; set; } public string ActualValue { get; set; } public string Workshop { get; set; } public string FillTime { get; set; } public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } public string Type { get; set; } } }