Blame view

sys/Hh.Mes.POJO/WebEntity/api/api_workOrder_head.cs 5.05 KB
赖素文 authored
1
2
3
4
5
6
using Hh.Mes.POJO.ApiEntity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
赖素文 authored
7
namespace Hh.Mes.POJO.Entity
赖素文 authored
8
9
10
11
{
    /// <summary>
    /// 订单请求记录_表头
    /// </summary>
赖素文 authored
12
13
    [SugarTable("api_workOrder_head")]
    public partial class api_workOrder_head
赖素文 authored
14
15
    {
        /// <summary>
赖素文 authored
16
        /// 主键
赖素文 authored
17
        /// </summary>
赖素文 authored
18
19
20
21
22
23
24
25
26
27
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        [SugarColumn(IsNullable = true)]
        public Guid keys { get; set; }

        /// <summary>
        /// 雷萨唯一标识ID
        /// </summary>
        [SugarColumn(Length = 80, ColumnDescription = "雷萨唯一标识ID", IsNullable = true)]
赖素文 authored
28
        public string plmeId { get; set; }
赖素文 authored
29
赖素文 authored
30
        /// <summary>
赖素文 authored
31
        /// 工单code 生产订单号
赖素文 authored
32
        /// </summary>
赖素文 authored
33
        [SugarColumn(Length = 100, ColumnDescription = "工单code 生产订单号", IsNullable = true)]
赖素文 authored
34
        public string workOrderCode { get; set; }
赖素文 authored
35
赖素文 authored
36
        /// <summary>
赖素文 authored
37
        /// 生产计划号 唯一
赖素文 authored
38
        /// </summary>
赖素文 authored
39
        [SugarColumn(Length = 50, ColumnDescription = "生产计划号", IsNullable = true)]
赖素文 authored
40
        public string planCode { get; set; }
赖素文 authored
41
赖素文 authored
42
43
44
        /// <summary>
        /// 产品编码
        /// </summary>
赖素文 authored
45
        [SugarColumn(Length = 50, ColumnDescription = "产品编码", IsNullable = true)]
赖素文 authored
46
        public string productCode { get; set; }
赖素文 authored
47
赖素文 authored
48
49
50
        /// <summary>
        /// 产品名称
        /// </summary>
赖素文 authored
51
        [SugarColumn(Length = 50, ColumnDescription = "产品名称", IsNullable = true)]
赖素文 authored
52
53
        public string productName { get; set; }
赖素文 authored
54
        [SugarColumn(Length = 80, IsNullable = true)]
赖素文 authored
55
        public string factoryCode { get; set; }
赖素文 authored
56
57

        [SugarColumn(Length = 50, IsNullable = true)]
赖素文 authored
58
        public string lineCode { get; set; }
赖素文 authored
59
赖素文 authored
60
61
62
        /// <summary>
        /// 订单类型
        /// </summary>
赖素文 authored
63
        [SugarColumn(Length = 50, ColumnDescription = "订单类型", IsNullable = true)]
赖素文 authored
64
65
66
        public string orderType { get; set; }

        /// <summary>
赖素文 authored
67
        /// 工艺路线版本
赖素文 authored
68
        /// </summary>
赖素文 authored
69
        [SugarColumn(Length = 40, ColumnDescription = "工艺路线版本", IsNullable = true)]
赖素文 authored
70
        public decimal edition { get; set; }
赖素文 authored
71
72

        /// <summary>
赖素文 authored
73
        /// 项目编码
赖素文 authored
74
        /// </summary>
赖素文 authored
75
76
        [SugarColumn(Length = 64, ColumnDescription = "项目编码", IsNullable = true)]
        public string projectCode { get; set; }
赖素文 authored
77
78

        /// <summary>
赖素文 authored
79
        /// 项目名称
赖素文 authored
80
        /// </summary>
赖素文 authored
81
82
83
        [SugarColumn(Length = 64, ColumnDescription = "项目名称", IsNullable = true)]
        public string projectName { get; set; }
赖素文 authored
84
        /// <summary>
赖素文 authored
85
        /// 管线号/图纸号
赖素文 authored
86
        /// </summary>
赖素文 authored
87
88
        [SugarColumn(Length = 64, ColumnDescription = "管线号/图纸号", IsNullable = true)]
        public string lineNo { get; set; }
赖素文 authored
89
90

        /// <summary>
赖素文 authored
91
        /// 图纸URL
赖素文 authored
92
        /// </summary>
赖素文 authored
93
94
        [SugarColumn(Length = 400, ColumnDescription = "图纸URL", IsNullable = true)]
        public string designUrl { get; set; }
赖素文 authored
95
赖素文 authored
96
97
98
99
100
        /// <summary>
        /// 图纸页码
        /// </summary>
        [SugarColumn(Length = 64, ColumnDescription = "图纸页码", IsNullable = true)]
        public string designNo { get; set; }
赖素文 authored
101
102

        /// <summary>
赖素文 authored
103
        /// 计划开始时间
赖素文 authored
104
        /// </summary>
赖素文 authored
105
106
        [SugarColumn(ColumnDescription = "计划开始时间", IsNullable = true)]
        public DateTime planStartTime { get; set; }
赖素文 authored
107
108

        /// <summary>
赖素文 authored
109
        /// 计划结束时间
赖素文 authored
110
        /// </summary>
赖素文 authored
111
112
        [SugarColumn(ColumnDescription = "计划结束时间", IsNullable = true)]
        public DateTime planEndTime { get; set; }
赖素文 authored
113
赖素文 authored
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
        /// <summary>
        /// 扩展字段1
        /// </summary>
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段1", IsNullable = true)]
        public string extend1 { get; set; }

        /// <summary>
        /// 扩展字段2
        /// </summary>
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段2", IsNullable = true)]
        public string extend2 { get; set; }

        /// <summary>
        /// 扩展字段3
        /// </summary>
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段3", IsNullable = true)]
        public string extend3 { get; set; }

        /// <summary>
        /// 扩展字段4
        /// </summary>
        [SugarColumn(Length = 40, ColumnDescription = "扩展字段4", IsNullable = true)]
        public string extend4 { get; set; }

        /// <summary>
        /// 1弃用0 删除
        /// </summary>
        [SugarColumn(ColumnDescription = "1弃用0 删除", IsNullable = true)]
        public int isDelete { get; set; }

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

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