using SqlSugar;
|
|
namespace MES.Service.Modes.SRM;
|
|
//送货单条码表
|
[SugarTable("MES_DELIVERY_NOTE_BARCODE")]
|
public class MesDeliveryNoteBarcode
|
{
|
//SEQ_DELIVERY
|
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_DELIVERY_B")]
|
public decimal Id { get; set; }
|
|
//送货单号
|
[SugarColumn(ColumnName = "DELIVERY_NO")]
|
public string? DeliveryNo { get; set; }
|
|
// 物料编码
|
[SugarColumn(ColumnName = "PRODUCT_CODE")]
|
public string? ProductCode { get; set; }
|
|
//物料条码
|
[SugarColumn(ColumnName = "SMALL_BARCODE")]
|
public string? SmallBarcode { get; set; }
|
|
//条码数量
|
[SugarColumn(ColumnName = "INCLUDE_QTY")]
|
public decimal? IncludeQty { get; set; }
|
|
//送货单项次
|
[SugarColumn(ColumnName = "LINE_NO")]
|
public string? LineNo { get; set; }
|
|
//创建时间
|
[SugarColumn(ColumnName = "CREATE_DATE")]
|
public DateTime? CreateDate { get; set; }
|
|
//供应商
|
[SugarColumn(ColumnName = "SUPP_NO")]
|
public string? SuppNo { get; set; }
|
|
//箱条码
|
[SugarColumn(ColumnName = "OUTER_BARCODE")]
|
public string? OuterBarcode { get; set; }
|
|
//条码类型
|
[SugarColumn(ColumnName = "BARCODE_TYPE")]
|
public string? BarcodeType { get; set; }
|
|
//是否合并
|
[SugarColumn(ColumnName = "IS_MERGE")]
|
public decimal? IsMegre { get; set; }
|
}
|