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_OutBoundOrderBYD")] public class Dt_OutBoundOrderBYD { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "REQUIREMENT_NO")] public string? REQUIREMENT_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "WRKS")] public string? WRKS { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "WH_NUMBER")] public string? WH_NUMBER { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "SYSNOD")] public string? SYSNOD { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "BUSINESS_CODE")] public string? BUSINESS_CODE { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "BUSINESS_NAME")] public string? BUSINESS_NAME { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "LGORT")] public string? LGORT { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "STATION")] public string? STATION { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "MO_NO")] public string? MO_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "SAP_OUT_NO")] public string? SAP_OUT_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RECEIVE_LGORT")] public string? RECEIVE_LGORT { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "OVERSTEP_REQ_FLAG")] public string? OVERSTEP_REQ_FLAG { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "SPLIT")] public string? SPLIT { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "STATUS")] public string? STATUS { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "CREATE_PERSON")] public string? CREATE_PERSON { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "CREATE_DATE")] public string? CREATE_DATE { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Creater")] public string? Creater { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "CreateDate")] public DateTime? CreateDate { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Modifier")] public string? Modifier { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "ModifyDate")] public DateTime? ModifyDate { get; set; } } }