Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/ClosedownHistoryOutput.cs
2023-05-23 19:23:09 +08:00

33 lines
846 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class ClosedownHistoryOutput
{
/// <summary>
/// 设备编码
/// </summary>
public string eqp_code { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string eqp_name { get; set; }
/// <summary>
/// 停机开始时间
/// </summary>
public string? closedown_start_time { get; set; }
/// <summary>
/// 停机结束时间
/// </summary>
public string? closedown_end_time { get; set; }
/// <summary>
/// 停机时间
/// </summary>
public decimal? closedown_time { get; set; }
}
}