using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.EquipMgr.Entities.Dto { public class ClosedownEndListOutput { public string id { get; set; } /// /// 生产场地 /// public string workshop_name { get; set; } /// /// 停机原因 /// public string reason { get; set; } /// /// 设备编号 /// public string eqp_code { get; set; } /// /// 设备型号 /// public string eqp_type_code { get; set; } /// /// 操作人 /// /// /// public string operator_name { get; set; } /// /// 备注 /// public string remark { get; set; } /// /// 停机开始时间 /// public DateTime? closeddown_start_time { get; set; } } }