ShipmentContainerDetail.cs
1.59 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("shipment_container_detail")]
public partial class ShipmentContainerDetail : SysEntity
{
public ShipmentContainerDetail()
{
}
/// <summary>
/// 组盘头id号
/// </summary>
[Column("headerId")]
public int? HeaderId { get; set; }
/// <summary>
/// 出库单编码
/// </summary>
[Column("shipmentCode")]
public string ShipmentCode { get; set; }
/// <summary>
/// 出库头d号
/// </summary>
[Column("shipmentHeaderId")]
public int? ShipmentHeaderId { get; set; }
/// <summary>
/// 出库明细id号
/// </summary>
[Column("shipmentDetailId")]
public int? ShipmentDetailId { get; set; }
/// <summary>
/// 物料编码
/// </summary>
[Column("materialCode")]
public string MaterialCode { get; set; }
/// <summary>
/// 物料名称
/// </summary>
[Column("materialName")]
public string MaterialName { get; set; }
/// <summary>
/// 配盘数量
/// </summary>
[Column("qty")]
public decimal? Qty { get; set; }
/// <summary>
/// 关联库存Id
/// </summary>
[Column("inventoryId")]
public int? InventoryId { get; set; }
/// <summary>
/// 项目号
/// </summary>
[Column("project")]
public string Project { get; set; }
}
}