BusMaterialDistributeLoad.cs
2.3 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
{
[Table("bus_material_distribute_load")]
[Serializable]
public class BusMaterialDistributeLoad : BaseEntityCU<int>
{
/// <summary>
///
/// </summary>
[Column("keys")]
public Guid Keys { get; set; }
/// <summary>
/// 产品编码
/// </summary>
[Column("productCode")]
public string ProductCode { get; set; }
/// <summary>
/// 呼叫工位
/// </summary>
[Column("needStation")]
public string NeedStation { get; set; }
/// <summary>
/// 人工装料区域
/// </summary>
//[Column("startArea")]
//public string StartArea { get; set; }
/// <summary>
/// 人工装料点
/// </summary>
[Column("startPosition")]
public string StartPosition { get; set; }
/// <summary>
/// 组队上料工位
/// </summary>
//[Column("endStationCode")]
//public string EndStationCode { get; set; }
///// <summary>
///// 组队上料区域
///// </summary>
//[Column("endArea")]
//public string EndArea { get; set; }
/// <summary>
/// 组队上料点
/// </summary>
[Column("endPosition")]
public string EndPosition { get; set; }
/// <summary>
/// 产品WCS编码
/// </summary>
[Column("wcsProductType")]
public int WcsProductType { get; set; }
/// <summary>
/// 容器编码
/// </summary>
[Column("containerCode")]
public string ContainerCode { get; set; }
/// <summary>
/// 容器类型
/// </summary>
[Column("containerType")]
public string ContainerType { get; set; }
/// <summary>
/// 装料套数
/// </summary>
[Column("loadQty")]
public int LoadQty { get; set; }
/// <summary>
/// 使用套数
/// </summary>
[Column("useQty")]
public int UseQty { get; set; }
[Column("status")]
public int? Status { get; set; }
[Column("workpieceNo")]
public string WorkpieceNo { get; set; }
}
}