Container.cs
1.45 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 容器表
/// </summary>
[Table("container")]
public partial class Container : SysEntity
{
public Container()
{
}
/// <summary>
/// 容器编码
/// </summary>
[Column("code")]
public string Code { get; set; }
/// <summary>
/// 容器类型
/// </summary>
[Column("type")]
public string Type { get; set; }
/// <summary>
///
/// </summary>
[Column("IsLock")]
public short? IsLock { get; set; }
/// <summary>
/// 库位id
/// </summary>
[Column("locationId")]
public int? LocationId { get; set; }
/// <summary>
/// 库位编码
/// </summary>
[Column("locationCode")]
public string LocationCode { get; set; }
/// <summary>
/// 状态
/// </summary>
[Column("status")]
public string Status { get; set; }
/// <summary>
/// 物料高度
/// </summary>
[Column("height")]
public decimal? Height { get; set; }
/// <summary>
/// 物料重量
/// </summary>
[Column("weight")]
public decimal? Weight { get; set; }
/// <summary>
/// 打印次数
/// </summary>
[Column("printCount")]
public int? PrintCount { get; set; }
}
}