BaseWorkStation.cs
2.66 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace HHECS.Model.Entities
{
/// <summary>
/// 工位表
/// </summary>
[Serializable]
[Table("base_work_station")]
public partial class BaseWorkStation : BaseEntityCU<int>
{
public BaseWorkStation()
{
}
[Column("linekey")]
public Guid? LineKey { get; set; }
/// <summary>
/// 线体代号
/// </summary>
[Column("lineCode")]
public string LineCode { get; set; }
/// <summary>
/// 工位代号
/// </summary>
[Column("workStationCode")]
public string WorkStationCode { get; set; }
/// <summary>
/// 工位名称
/// </summary>
[Column("workStationName")]
public string WorkStationName { get; set; }
/// <summary>
/// 顺序
/// </summary>
[Column("sequence")]
public int? Sequence { get; set; }
/// <summary>
/// 工位属性
/// </summary>
[Column("attribute")]
public string Attribute { get; set; }
/// <summary>
/// 是否有效
/// </summary>
[Column("enable")]
public bool? Enable { get; set; }
/// 库位
/// </summary>
[Column("monitorIP")]
public string MonitorIP { get; set; }
/// <summary>
/// 工序代码
/// </summary>
[Column("processCode")]
public string ProcessCode { get; set; }
/// <summary>
/// 桁车、AGV 取货点
/// </summary>
[Column("takeLocation")]
public int TakeLocation { get; set; }
/// <summary>
/// 桁车、AGV 放货点
/// </summary>
[Column("putLocation")]
public int PutLocation { get; set; }
/// <summary>
/// 工位对应正常模式的运输设备编码
/// </summary>
[Column("transportNormal")]
public string TransportNormal { get; set; }
/// <summary>
/// 工位对应兼容模式的运输设备编码
/// </summary>
[Column("transportCompatible")]
public string TransportCompatible { get; set; }
/// <summary>
/// 工位X坐标距离
/// </summary>
[Column("distance")]
public int Distance { get; set; }
/// <summary>
/// 能放置管段的最大管径
/// </summary>
[Column("maxDiameter")]
public decimal? MaxDiameter { get; set; }
/// <summary>
/// 能放置管段的最小管径长度
/// </summary>
[Column("minLength")]
public decimal? MinLength { get; set; }
}
}