base_procedure_problem.cs
3.23 KB
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
using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations.Schema;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_procedure_problem")]
public partial class base_procedure_problem:base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 管段码
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "管段码", IsNullable = true)]
public string barCode { get; set; }
/// <summary>
/// 问题原因
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "问题原因", IsNullable = true)]
public string problem { get; set; }
/// <summary>
/// 工序Code
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "工序Code", IsNullable = true)]
public string oprSequenceCode { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime createTime { get; set; }
[SugarColumn(Length = 510, IsNullable = true)]
public string createBy { get; set; }
[SugarColumn(Length = 510, IsNullable = true)]
public string extend1 { get; set; }
[SugarColumn(Length = 510, IsNullable = true)]
public string extend2 { get; set; }
[SugarColumn(Length = 510, IsNullable = true)]
public string extend3 { get; set; }
/// <summary>
/// 物料码
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "物料码", IsNullable = true)]
public string materialCode { get; set; }
/// <summary>
/// 工序名称
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "工序名称", IsNullable = true)]
public string oprSequenceName { get; set; }
/// <summary>
/// 管段长度
/// </summary>
[SugarColumn(ColumnDescription = "管段长度", IsNullable = true)]
public decimal cuttingLength { get; set; }
/// <summary>
/// 物料名称
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "物料名称", IsNullable = true)]
public string materialName { get; set; }
/// <summary>
/// 材质
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "材质", IsNullable = true)]
public string types { get; set; }
/// <summary>
/// 壁厚
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "壁厚", IsNullable = true)]
public string thickness { get; set; }
/// <summary>
/// 管径
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "管径", IsNullable = true)]
public string diameter { get; set; }
/// <summary>
/// 规格
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "规格", IsNullable = true)]
public string specifications { get; set; }
/// <summary>
/// 图纸URL
/// </summary>
[SugarColumn(ColumnDescription = "图纸URL", IsNullable = true)]
public string designUrl { get; set; }
}
}