qiuyao
2025-03-26 60f5c62de53256a92161813bd1098c7124ecae35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_Tasks.SerialPort
{
    /// <summary>
    ///前三个是 查看当前步骤返回步骤接口(Getcircuit),数据
    /// </summary>
    public class ProcessData
    {
        /// <summary>
        /// 当前工艺
        /// </summary>
        public Dt_Process proNow { get; set; }  
 
        /// <summary>
        /// 最大步骤
        /// </summary>
        public int maxproce { get; set; } 
 
        /// <summary>
        /// 完成的步骤
        /// </summary>
        public IEnumerable<Dt_Process> finish { get; set; }
 
 
        /// <summary>
        /// process类
        /// </summary>
        public List<Dt_Process> ProcessList { get; set; }
    }
 
 
 
}