bus_quality_management.cs
3.55 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
106
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("bus_quality_management")]
public partial class bus_quality_management : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int iD { get; set; }
/// <summary>
/// 焊接质量控制点
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "焊接质量控制点", IsNullable = true)]
public string weldControlPoints { get; set; }
/// <summary>
/// 检测方法
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "检测方法", IsNullable = true)]
public string inspectionMethods { get; set; }
/// <summary>
/// 控制方法
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "控制方法", IsNullable = true)]
public string controlMethods { get; set; }
/// <summary>
/// 过程追溯要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "过程追溯要求", IsNullable = true)]
public string processTraceability { get; set; }
/// <summary>
/// 质量标准
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "质量标准", IsNullable = true)]
public string qualityStandards { get; set; }
/// <summary>
/// 质量目标
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "质量目标", IsNullable = true)]
public string qualityObjectives { get; set; }
/// <summary>
/// 缺陷分类
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "缺陷分类", IsNullable = true)]
public string defectClassification { get; set; }
/// <summary>
/// 纠正措施
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "纠正措施", IsNullable = true)]
public string correctiveActions { get; set; }
/// <summary>
/// 预防措施
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "预防措施", IsNullable = true)]
public string preventiveActions { get; set; }
/// <summary>
/// 责任部门
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "责任部门", IsNullable = true)]
public string responsibleDepartment { get; set; }
/// <summary>
/// 责任人
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "责任人", IsNullable = true)]
public string responsiblePerson { get; set; }
/// <summary>
/// 记录要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "记录要求", IsNullable = true)]
public string recordRequirements { get; set; }
/// <summary>
/// 培训要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "培训要求", IsNullable = true)]
public string trainingRequirements { get; set; }
/// <summary>
/// 审计要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "审计要求", IsNullable = true)]
public string auditRequirements { get; set; }
/// <summary>
/// 质量评估
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "质量评估", IsNullable = true)]
public string qualityAssessment { get; set; }
}
}