using Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.CompilerServices; using System.Text; using System.Threading.Tasks; namespace Business.Business.Dto { /// /// 工单工艺路线预处理Dto /// public class WorkOrdRoutingDto { /// /// 层级 /// public int level { get; set; } /// /// 工序(当前产线的关键工序) /// public int Op { get; set; } /// /// 父级工序 /// public int ParentOp { get; set; } /// /// 产线 /// public string Line { get; set; } /// /// 单位时间标准产能 /// public decimal Rate { get; set; } /// /// 产线提前期/提前工作时间不包括休息时间(小时) /// public decimal SetupTime { get; set; } /// /// 产线可开工日期 /// public DateTime StartTime { get; set; } /// /// 当前层级有子级的工序 /// public List ChdParentOps { get; set; } } }