BaseLocationRel.cs
1.42 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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace HHECS.Model.Entities
{
/// <summary>
/// 料点关系对应表
/// </summary>
[Table("base_location_rel")]
[Serializable]
public class BaseLocationRel : BaseEntityCU<int>
{
/// <summary>
///
/// </summary>
[Column("keys")]
public Guid Keys { get; set; }
/// <summary>
/// 任务起点工位
/// </summary>
[Column("startStationCode")]
public string StartStationCode { get; set; }
/// <summary>
/// 任务终点工位
/// </summary>
[Column("endStationCode")]
public string EndStationCode { get; set; }
/// <summary>
/// 任务起点编号
/// </summary>
[Column("startPositionCode")]
public string StartPositionCode { get; set; }
/// <summary>
/// 任务终点编号
/// </summary>
[Column("endPositionCode")]
public string EndPositionCode { get; set; }
/// <summary>
/// 料点关系类型,取起点
/// </summary>
[Column("endZoneCode")]
public int EndZoneCode { get; set; }
/// <summary>
/// 料点关系类型,取起点
/// </summary>
[Column("startZoneCode")]
public int StartZoneCode { get; set; }
}
}