namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { public class ClosedownHistoryOutput { /// /// 设备编码 /// public string eqp_code { get; set; } /// /// 设备名称 /// public string eqp_name { get; set; } /// /// 停机开始时间 /// public string? closedown_start_time { get; set; } /// /// 停机结束时间 /// public string? closedown_end_time { get; set; } /// /// 停机时间 /// public decimal? closedown_time { get; set; } } }