BaseWeldTechnologyEquipment.cs
1.84 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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace HHECS.Model.Entities
{
/// <summary>
/// 焊接工艺参数设备下发
/// </summary>
[Table("base_weld_technology_equipment")]
public class BaseWeldTechnologyEquipment : BaseEntityCU<int>
{
/// <summary>
/// 焊接工艺id
/// </summary>
public int technologyHeadId { get; set; }
/// <summary>
/// 设备编码
/// </summary>
public string equipmentCode { get; set; }
/// <summary>
/// 最小管径
/// </summary>
public decimal minDiameter { get; set; }
/// <summary>
/// 最小壁厚
/// </summary>
public decimal minThickness { get; set; }
/// <summary>
/// 材质
/// </summary>
public string material { get; set; }
/// <summary>
/// 最小焊缝
/// </summary>
public int minWeldingSeam { get; set; }
/// <summary>
/// 任务号
/// </summary>
public string taskNo { get; set; }
/// <summary>
/// 任务号
/// </summary>
public string pipeLength { get; set; }
/// <summary>
/// 下发状态
/// </summary>
public int sendStatus { get; set; }
/// <summary>
/// createTime
/// </summary>
public DateTime? createTime { get; set; }
/// <summary>
/// createBy
/// </summary>
public string createBy { get; set; }
/// <summary>
/// updateTime
/// </summary>
public DateTime? updateTime { get; set; }
/// <summary>
/// updateBy
/// </summary>
public string updateBy { get; set; }
}
}