sjz
4 天以前 678e995cca52a9072c0a92a805060b4969d1010f
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
using SqlSugar;
 
namespace MES.Service.Modes;
 
/// <summary>
///     送货单条码表
/// </summary>
[SugarTable("MES_DELIVERY_NOTE_BARCODE")]
public class MesDeliveryNoteBarcode
{
    /// <summary>
    ///     SEQ_DELIVERY
    /// </summary>
    [SugarColumn(ColumnName = "ID", IsPrimaryKey = true,OracleSequenceName = "SEQ_DELIVERY")]
    public decimal Id { get; set; }
 
    /// <summary>
    ///     送货单号
    /// </summary>
    [SugarColumn(ColumnName = "DELIVERY_NO")]
    public string? DeliveryNo { get; set; }
 
    /// <summary>
    ///     物料编码
    /// </summary>
    [SugarColumn(ColumnName = "PRODUCT_CODE")]
    public string? ProductCode { get; set; }
 
    /// <summary>
    ///     物料条码
    /// </summary>
    [SugarColumn(ColumnName = "SMALL_BARCODE")]
    public string? SmallBarcode { get; set; }
 
    /// <summary>
    ///     条码数量
    /// </summary>
    [SugarColumn(ColumnName = "INCLUDE_QTY")]
    public decimal? IncludeQty { get; set; }
 
    /// <summary>
    ///     创建时间
    /// </summary>
    [SugarColumn(ColumnName = "CREATE_DATE")]
    public DateTime? CreateDate { get; set; }
 
    /// <summary>
    ///     供应商
    /// </summary>
    [SugarColumn(ColumnName = "SUPP_NO")]
    public string? SuppNo { get; set; }
 
    /// <summary>
    ///     送货单项次
    /// </summary>
    [SugarColumn(ColumnName = "LINE_NO")]
    public decimal? LineNo { get; set; }
 
 
    [SugarColumn(IsIgnore = true)] public string? Type { get; set; }
}