using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Model.Models.Inbound { /// /// /// [SugarTable("Dt_MainReturnInventory")] public class Dt_MainReturnInventory { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "WH_NUMBER")] public string? WH_NUMBER { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "BUSINESS_NAME")] public string? BUSINESS_NAME { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "WERKS")] public string? WERKS { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "LGORT")] public string? LGORT { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "TOTAL_RETURN_QTY")] public string? TOTAL_RETURN_QTY { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "BUSINESS_CODE")] public string? BUSINESS_CODE { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RETURN_NO")] public string? RETURN_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RETURN_ITEM_NO")] public string? RETURN_ITEM_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "TPNUM")] public string? TPNUM { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "YLZD5")] public string? YLZD5 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "IZLID")] public string? IZLID { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "SYSNOD")] public string? SYSNOD { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "MO_NO")] public string? MO_NO { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "YLZD3")] public string? YLZD3 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "YLZD4")] public string? YLZD4 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "YLZD1")] public string? YLZD1 { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "YLZD2")] public string? YLZD2 { get; set; } } }