ReceiptContainerDetail.cs
1.58 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("receipt_container_detail")]
public partial class ReceiptContainerDetail : SysEntity
{
public ReceiptContainerDetail()
{
}
/// <summary>
/// 组盘头id号
/// </summary>
[Column("headerId")]
public int? HeaderId { get; set; }
/// <summary>
/// 入库单编码
/// </summary>
[Column("receiptCode")]
public string ReceiptCode { get; set; }
/// <summary>
/// 入库单id号
/// </summary>
[Column("receiptId")]
public int? ReceiptId { get; set; }
/// <summary>
/// 入库单明细id号
/// </summary>
[Column("receiptDetailId")]
public int? ReceiptDetailId { get; set; }
/// <summary>
/// 物料编码
/// </summary>
[Column("materialCode")]
public string MaterialCode { get; set; }
/// <summary>
/// 物料名称
/// </summary>
[Column("materialName")]
public string MaterialName { get; set; }
/// <summary>
/// 物料规格
/// </summary>
[Column("materialSpec")]
public string MaterialSpec { get; set; }
/// <summary>
/// 组盘数量
/// </summary>
[Column("qty")]
public decimal? Qty { get; set; }
/// <summary>
/// 项目号
/// </summary>
[Column("project")]
public string Project { get; set; }
}
}