qiuyao
2025-03-22 5ae3e9f5a944a887ab022bf1b0a5afdee20af70e
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
 
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_Process", "工艺表"), MultiTenant]
    public class Dt_Process : BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int CraftID { get; set; }
 
        /// <summary>
        /// 大序号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int Nodal { get; set; }
 
 
        /// <summary>
        /// 步骤序号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int SetpNum { get; set; }
 
        /// <summary>
        /// 班组
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string CraftType { get; set; }
 
 
        /// <summary>
        /// 工作前准备步骤
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 500)]
        public string CraftsStep { get; set; }
 
 
        /// <summary>
        /// 工艺具体内容
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 2000)]
        public string CraftContent { get; set; }
 
 
        /// <summary>
        /// 工具
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 200)]
        public string Tools { get; set; }
 
 
        /// <summary>
        /// 物料
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 200)]
        public  string Material { get; set; }
        
 
 
        /// <summary>
        /// 第一个需要扭的值
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public float TorqueOne { get; set; }
 
        /// <summary>
        /// 第一个需要扭的值的个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int TorqueOneQuantity { get; set; }
 
 
        /// <summary>
        /// 套筒id(信息列表)
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleOneid { get; set; }
 
 
        /// <summary>
        /// 第一个套筒数量
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleOne { get; set; }
 
        /// <summary>
        /// 第二个需要扭的值
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public float TorqueTwo { get; set; }
 
        /// <summary>
        /// 第二个需要扭的值的个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int TorqueTwoQuantity { get; set; }
 
 
        /// <summary>
        /// 第二个套筒id
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleTowid { get; set; }
 
        /// <summary>
        /// 第二个套筒的数量
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleTwo { get; set; }
 
              
        /// <summary>
        /// 需要扭几种不同的力
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int TorqueSum { get; set; }
 
        /// <summary>
        /// 点位坐标XYZ
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string PointAxisXYZ {  get; set; }
        /// <summary>
        /// 点位坐标HPB
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string PointAxisHPB { get; set; }
 
    }
}