BaseWorkOrderBends.cs
2.67 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 System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace HHECS.Model.Entities
{
[Serializable]
[Table("base_work_order_bends")]
public partial class BaseWorkOrderBends : BaseEntityCU<int>
{
/// <summary>
/// 船号
/// </summary>
[Column("shipNo")]
public string shipNo { get; set; }
/// <summary>
/// 首弯转角
/// </summary>
[Column("cornerOne")]
public string cornerOne { get; set; }
/// <summary>
/// 转角
/// </summary>
[Column("mountingCorner")]
public string mountingCorner { get; set; }
/// <summary>
/// 弯角
/// </summary>
[Column("curve")]
public string curve { get; set; }
/// <summary>
/// 产品头
/// </summary>
[Column("headKeys")]
public string headKeys { get; set; }
/// <summary>
/// 工件编号
/// </summary>
[Column("workPieceNo")]
public string workPieceNo { get; set; }
/// <summary>
/// 管件号
/// </summary>
[Column("pipePartsNo")]
public string pipePartsNo { get; set; }
/// <summary>
/// 壁厚
/// </summary>
[Column("thickness")]
public string thickness { get; set; }
/// <summary>
/// 材质
/// </summary>
[Column("material")]
public string material { get; set; }
/// <summary>
/// 管材外径
/// </summary>
[Column("externalDiameter")]
public string externalDiameter { get; set; }
/// <summary>
/// 弯管半径
/// </summary>
[Column("radius")]
public string radius { get; set; }
/// <summary>
/// 下料长度
/// </summary>
[Column("length")]
public string length { get; set; }
/// <summary>
/// 直段
/// </summary>
[Column("straightSegment")]
public string straightSegment { get; set; }
/// <summary>
/// 1端扣减量
/// </summary>
[Column("deduction1")]
public string deduction1 { get; set; }
/// <summary>
/// 2端扣减量
/// </summary>
[Column("deduction2")]
public string deduction2 { get; set; }
/// <summary>
/// 1端附件
/// </summary>
[Column("file1")]
public string file1 { get; set; }
/// <summary>
/// 2端附件
/// </summary>
[Column("file2")]
public string file2 { get; set; }
}
}