base_technical_tequirements.cs
3.53 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
107
using System;
using SqlSugar;
using Hh.Mes.POJO.EnumEntitys;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_technical_tequirements")]
public partial class base_technical_tequirements : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int iD { get; set; }
/// <summary>
/// 产品名称
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "产品名称", IsNullable = false)]
public string productName { get; set; }
/// <summary>
/// 规格尺寸
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "规格尺寸", IsNullable = true)]
public string specificationsAndDimensions { get; set; }
/// <summary>
/// 材料
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "材料", IsNullable = true)]
public string material { get; set; }
/// <summary>
/// 表面处理
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "表面处理", IsNullable = true)]
public string surfaceTreatment { get; set; }
/// <summary>
/// 加工工艺
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "加工工艺", IsNullable = true)]
public string processingTechnology { get; set; }
/// <summary>
/// 精度要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "精度要求", IsNullable = true)]
public string accuracyRequirements { get; set; }
/// <summary>
/// 检验标准
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "检验标准", IsNullable = true)]
public string inspectionStandards { get; set; }
/// <summary>
/// 热处理
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "热处理", IsNullable = true)]
public string heatTreatment { get; set; }
/// <summary>
/// 装配要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "装配要求", IsNullable = true)]
public string assemblyRequirements { get; set; }
/// <summary>
/// 包装要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "包装要求", IsNullable = true)]
public string packagingRequirements { get; set; }
/// <summary>
/// 标识
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "标识", IsNullable = true)]
public string identification { get; set; }
/// <summary>
/// 生产周期
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "生产周期", IsNullable = true)]
public string productionCycle { get; set; }
/// <summary>
/// 质量控制
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "质量控制", IsNullable = true)]
public string qualityControl { get; set; }
/// <summary>
/// 环境要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "环境要求", IsNullable = true)]
public string environmentalRequirements { get; set; }
/// <summary>
/// 安全要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "安全要求", IsNullable = true)]
public string safetyRequirements { get; set; }
}
}