zhuangpei-mesbackend/DOAN.Model/MES/dev/Dto/DeviceUptimeQueryDto.cs
2025-04-27 17:52:53 +08:00

41 lines
884 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.dev.Dto
{
/// <summary>
/// 设备保全率查询对象
/// </summary>
public class DeviceUptimeQueryDto : PagerInfo
{
}
/// <summary>
/// 设备保全率输入输出对象
/// </summary>
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; }
}
}