Location.cs
2.5 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
98
99
100
101
102
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 库位表
/// </summary>
[Table("location")]
public partial class Location : SysEntity
{
public Location()
{
}
/// <summary>
/// 库位
/// </summary>
[Column("code")]
public string Code { get; set; }
/// <summary>
/// 行
/// </summary>
[Column("row")]
public short? Row { get; set; }
/// <summary>
/// 列
/// </summary>
[Column("line")]
public short? Line { get; set; }
/// <summary>
/// 层
/// </summary>
[Column("layer")]
public short? Layer { get; set; }
/// <summary>
/// 格
/// </summary>
[Column("grid")]
public short? Grid { get; set; }
/// <summary>
/// 最大高度
/// </summary>
[Column("maxHeight")]
public decimal? MaxHeight { get; set; }
/// <summary>
/// 最大重量
/// </summary>
[Column("maxWeight")]
public decimal? MaxWeight { get; set; }
/// <summary>
/// 双伸位索引
/// </summary>
[Column("rowIndex")]
public short? RowIndex { get; set; }
/// <summary>
/// 巷道
/// </summary>
[Column("roadway")]
public int? Roadway { get; set; }
/// <summary>
/// 库位类型
/// </summary>
[Column("type")]
public string Type { get; set; }
/// <summary>
/// 是否禁用
/// </summary>
[Column("isStop")]
public bool? IsStop { get; set; }
/// <summary>
/// 容器id号
/// </summary>
[Column("containerId")]
public int? ContainerId { get; set; }
/// <summary>
/// 容器编码
/// </summary>
[Column("containerCode")]
public string ContainerCode { get; set; }
/// <summary>
/// 状态
/// </summary>
[Column("status")]
public string Status { get; set; }
/// <summary>
/// 物料编号
/// </summary>
[Column("goodsNo")]
public string GoodsNo { get; set; }
/// <summary>
/// 上次盘点日期
/// </summary>
[Column("lastCycleCountDate")]
public System.DateTime? LastCycleCountDate { get; set; }
/// <summary>
/// 乐观锁
/// </summary>
[Column("version")]
public byte[] Version { get; set; }
}
}