Station.cs
1.47 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 工位表
/// </summary>
[Table("base_work_station")]
public partial class Station : SysEntity
{
public Station()
{
}
/// <summary>
/// 线体ID
/// </summary>
[Column("lineId")]
public int? LineId { get; set; }
/// <summary>
/// 线体代号
/// </summary>
[Column("lineCode")]
public string LineCode { get; set; }
/// <summary>
/// 工位代号
/// </summary>
[Column("code")]
public string Code { get; set; }
/// <summary>
/// 工位名称
/// </summary>
[Column("name")]
public string Name { get; set; }
/// <summary>
/// 顺序
/// </summary>
[Column("sequence")]
public int? Sequence { get; set; }
/// <summary>
/// 工位属性
/// </summary>
[Column("attribute")]
public string Attribute { get; set; }
/// <summary>
/// 工位类型
/// </summary>
[Column("stationType")]
public string StationType { get; set; }
/// <summary>
/// 是否有效
/// </summary>
[Column("enable")]
public bool? Enable { get; set; }
/// <summary>
/// 用于构建ztree
/// </summary>
[Column("lineKey")]
public Guid lineKey { get; set; }
}
}