using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_Tasks.SerialPort { /// ///前三个是 查看当前步骤返回步骤接口(Getcircuit),数据 /// public class ProcessData { /// /// 当前工艺 /// public Dt_Process proNow { get; set; } /// /// 最大步骤 /// public int maxproce { get; set; } /// /// 完成的步骤 /// public IEnumerable finish { get; set; } /// /// process类 /// public List ProcessList { get; set; } } }