yanjinhui
2025-03-10 f391144114bedefe44c700a590bd50272ff067ec
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
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.SerialPort
{
    public class AddProcessDTO
    {
 
        
        /// <summary>
        /// 类型
        /// </summary>
        public  string  craftstype { get; set; }
 
        /// <summary>
        /// 大步骤
        /// </summary>
        public int nodal { get; set; }
 
        /// <summary>
        /// 工前准备
        /// </summary>
        public string  craftsstep { get; set; }
 
        /// <summary>
        /// 具体实行
        /// </summary>
        public string  craftcontent { get; set; }
 
        /// <summary>
        /// 套筒数量 sleevenum=TorqueSum
        /// </summary>
        public  int  sleeveNum { get; set; }
 
        /// <summary>
        /// 工具
        /// </summary>
        public string  tools { get; set; }
 
 
    }
}