using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm.DataVm { public class DataStockInfoVM { public int Id { get; set; } /// /// 创建日期 /// public DateTime CreateTime { get; set; } = DateTime.Now; /// /// 更新日期 /// public DateTime? UpdateTime { get; set; } /// /// 是否删除 /// public string IsDel { get; set; } = "0"; /// /// 创建人 /// public int CreateUser { get; set; } /// /// 更新人 /// public int? UpdateUser { get; set; } /// /// 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; } /// /// 重量 /// public decimal Weight { get; set; } } }