Blame view

sys/Hh.Mes.POJO/WebEntity/api/api_workOrder_detail.cs 4.08 KB
赖素文 authored
1
using System;
赖素文 authored
2
3
using SqlSugar;
赖素文 authored
4
namespace Hh.Mes.POJO.Entity
赖素文 authored
5
{
赖素文 authored
6
7
    [SugarTable("api_workOrder_detail")]
    public partial class api_workOrder_detail
赖素文 authored
8
9
    {
        /// <summary>
赖素文 authored
10
        /// 主键
赖素文 authored
11
        /// </summary>
赖素文 authored
12
13
14
15
16
17
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        [SugarColumn(IsNullable = true)]
        public Guid headKeys { get; set; }
赖素文 authored
18
        /// <summary>
赖素文 authored
19
        /// 工序code
赖素文 authored
20
        /// </summary>
赖素文 authored
21
22
23
        [SugarColumn(Length = 40, ColumnDescription = "工序code", IsNullable = true)]
        public string oprSequenceCode { get; set; }
24
赖素文 authored
25
        /// <summary>
赖素文 authored
26
        /// 计划开始时间
赖素文 authored
27
        /// </summary>
赖素文 authored
28
29
30
        [SugarColumn(ColumnDescription = "计划开始时间", IsNullable = true)]
        public DateTime planStartTime { get; set; }
赖素文 authored
31
        /// <summary>
赖素文 authored
32
        /// 计划结束时间
赖素文 authored
33
        /// </summary>
赖素文 authored
34
35
36
        [SugarColumn(ColumnDescription = "计划结束时间", IsNullable = true)]
        public DateTime planEndTime { get; set; }
赖素文 authored
37
        /// <summary>
赖素文 authored
38
        /// 管段物料编码 切割工序
赖素文 authored
39
        /// </summary>
赖素文 authored
40
41
42
        [SugarColumn(Length = 40, ColumnDescription = "管段物料编码 切割工序", IsNullable = true)]
        public string cutMaterCode { get; set; }
赖素文 authored
43
        /// <summary>
赖素文 authored
44
        /// 管段切割长度 切割工序
赖素文 authored
45
        /// </summary>
赖素文 authored
46
47
48
        [SugarColumn(ColumnDescription = "管段切割长度 切割工序", IsNullable = true)]
        public double cuttingLength { get; set; }
赖素文 authored
49
        /// <summary>
赖素文 authored
50
        /// 焊口形式对焊BW/插焊SW/支架角焊缝FW 焊接工序
赖素文 authored
51
        /// </summary>
赖素文 authored
52
53
54
        [SugarColumn(Length = 40, ColumnDescription = "焊口形式对焊BW/插焊SW/支架角焊缝FW 焊接工序", IsNullable = true)]
        public string weldType { get; set; }
赖素文 authored
55
        /// <summary>
赖素文 authored
56
        /// 焊口号 焊接工序
赖素文 authored
57
        /// </summary>
赖素文 authored
58
59
60
        [SugarColumn(Length = 40, ColumnDescription = "焊口号 焊接工序", IsNullable = true)]
        public string weldNo { get; set; }
赖素文 authored
61
        /// <summary>
赖素文 authored
62
        /// 焊口物料 焊接工序
赖素文 authored
63
        /// </summary>
赖素文 authored
64
65
66
67
68
69
70
71
72
        [SugarColumn(Length = 40, ColumnDescription = "焊口物料 焊接工序", IsNullable = true)]
        public string weldMaterCode { get; set; }

        /// <summary>
        /// 是否成品管0:否,1:是
        /// </summary>
        [SugarColumn(ColumnDescription = "是否成品管0:否,1:是", IsNullable = true)]
        public int isEndProduct { get; set; }
73
赖素文 authored
74
75
76
        /// <summary>
        /// 扩展字段1
        /// </summary>
77
78
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段3", IsNullable = true)]
        public string extend1 { get; set; }
赖素文 authored
79
80
81
82

        /// <summary>
        /// 扩展字段2
        /// </summary>
83
84
85
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段4", IsNullable = true)]
        public string extend2 { get; set; }
赖素文 authored
86
87

        /// <summary>
88
        /// extendComp1
赖素文 authored
89
        /// </summary>
90
91
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段1", IsNullable = true)]
        public string extendComp1 { get; set; }
赖素文 authored
92
93

        /// <summary>
94
        /// extendComp2
赖素文 authored
95
        /// </summary>
96
97
98
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段2", IsNullable = true)]
        public string extendComp2 { get; set; }
赖素文 authored
99
100

        /// <summary>
101
        /// extendComp3
赖素文 authored
102
103
        /// </summary>
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段3", IsNullable = true)]
104
        public string extendComp3 { get; set; }
赖素文 authored
105
106

        /// <summary>
107
        /// extendComp4
赖素文 authored
108
109
        /// </summary>
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段4", IsNullable = true)]
110
        public string extendComp4 { get; set; }
赖素文 authored
111
112
113
114
115
116
117
118
119
120
121

        /// <summary>
        /// 建立时间
        /// </summary>
        [SugarColumn(ColumnDescription = "建立时间", IsNullable = true)]
        public DateTime createTime { get; set; }

        /// <summary>
        /// 建立者
        /// </summary>
        [SugarColumn(Length = 40, ColumnDescription = "建立者", IsNullable = true)]
赖素文 authored
122
        public string createBy { get; set; }
赖素文 authored
123
赖素文 authored
124
    }
赖素文 authored
125
}