zhuangpei-mesbackend/DOAN.Model/MES/dev/Dto/DeviceUptimeQueryDto.cs

59 lines
1.3 KiB
C#
Raw Normal View History

2025-04-27 17:52:53 +08:00
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
{
2025-05-06 15:02:44 +08:00
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; }
2025-04-27 17:52:53 +08:00
}
/// <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; }
}
}