using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace WMS.Entity.DataEntity { /// ///库存信息记录表 /// [SugarTable("DataStockInfo")] public class DataStockInfo : BaseEntity { /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string SkuNo { get; set; } /// /// Desc:物料名称 /// Default: /// Nullable:True /// public string SkuName { get; set; } /// /// Desc:规格 /// Default: /// Nullable:True /// public string Standard { get; set; } /// /// Desc:类型 /// 0,4:吨袋 1:公斤袋 2:罐装满桶 3:罐装桶 5:母托盘 6,7:子托盘 /// Default: /// Nullable:True /// public string Type { get; set; } /// /// Desc:入库数量 /// Default: /// Nullable:False /// public int ArrivalQty { get; set; } /// /// Desc:入库数量(月) /// Default: /// Nullable:False /// public int YearArrivalQty { get; set; } /// /// Desc:出库数量 /// Default: /// Nullable:False /// public int ExportQty { get; set; } /// /// Desc:出库数量(月) /// Default: /// Nullable:False /// public int YearExportQty { get; set; } /// /// Desc:结存数量 /// Default: /// Nullable:False /// public int BalanceQty { get; set; } /// /// Desc:期出数量 /// Default: /// Nullable:False /// public int ExpectedQty { get; set; } /// /// Desc:结存数量(月) /// Default: /// Nullable:False /// public int YearBalanceQty { get; set; } /// /// Desc:期出数量(月) /// Default: /// Nullable:False /// public int YearExpectedQty { get; set; } /// /// Desc:批次号 /// Default: /// Nullable:True /// public string LotNo { get; set; } /// /// Desc:批次描述 /// Default: /// Nullable:True /// public string LotText { get; set; } /// /// Desc:供货批次 /// Default: /// Nullable:True /// public string SupplierLot { get; set; } /// /// Desc:所属仓库 /// Default: /// Nullable:True /// public string WareHouseNo { get; set; } /// /// Desc:所属巷道 /// Default: /// Nullable:True /// public string RoadwayNo { get; set; } } }