using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { /// /// 拆解组装包装排产输入参数 /// public class UnPackSchedlingInput { /// /// 工单Id /// public string mo_id { get; set; } /// /// 生产任务Id /// public string mo_task_id { get; set; } /// /// 生产bom Id /// public string bom_id { get; set; } /// /// 产线Id /// public string workline_id { get; set; } /// /// Desc:预计开始时间 /// Default: /// Nullable:True /// public DateTime? estimated_start_date { get; set; } /// /// Desc:预计结束时间 /// Default: /// Nullable:True /// public DateTime? estimated_end_date { get; set; } } }