StationCache.cs
1.41 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace HHECS.Model.Entities
{
/// <summary>
/// 工位缓存表
/// </summary>
[Serializable]
[Table("station_cache")]
public class StationCache : BaseEntityCU<int>
{
[Column("lineCode")]
public string LineCode { get; set; }
[Column("code")]
/// <summary>
/// 缓存编码
/// </summary>
public string Code { get; set; }
[Column("stationCode")]
/// <summary>
/// 工位编码
/// </summary>
public string StationCode { get; set; }
[Column("sequence")]
/// <summary>
/// 顺序
/// </summary>
public int? Sequence { get; set; }
[Column("plcAddress")]
/// <summary>
/// PLC位置码
/// </summary>
public string PlcAddress { get; set; }
[Column("stepTraceId")]
/// <summary>
/// 工序跟踪标识
/// </summary>
public int? StepTraceId { get; set; }
[Column("materialCode")]
/// <summary>
/// 物料编码
/// </summary>
public string MaterialCode { get; set; }
[Column("pipeSN")]
/// <summary>
/// 管材SN 每根管子一个,不重复,如果有SN码,那么qty就是1
/// </summary>
public string PipeSN { get; set; }
}
}