using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { /// /// 停机开始输入参数 /// public class CloseDownStartInput { /// /// 设备id /// public string eqp_id { get; set; } /// /// 停机类别 /// public string category { get; set; } /// /// 停机原因 /// public string reason { get; set; } /// /// 备注 /// public string remark { get; set; } } }