using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models
{
///
///
///
[SugarTable("Dt_OutboundOrderDetailBYD")]
public class Dt_OutboundOrderDetailBYD
{
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "REQUIREMENT_NO")]
public string? REQUIREMENT_NO { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "REQUIREMENT_ITEM_NO")]
public string? REQUIREMENT_ITEM_NO { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "MATNR")]
public string? MATNR { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "BATCH")]
public string? BATCH { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "QTY")]
public string? QTY { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "GEAR")]
public string? GEAR { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "PI_NO")]
public string? PI_NO { get; set; }
}
}