using NXWMS.DataAccess.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Result.Report { /// /// 出库日统计报表 /// public class OutStockDayStatisticsResult { /// /// 出库单号(对应发货单号) /// public string OutstockNo { get; set; } public string BillType { get; set; } public string BillTypeName { get; set; } public string LineNumber { get; set; } public DateTime OutstockTime { get; set; } public DateTime OutstockBillCreateTime { get; set; } public int? StandardQTY { get; set; } public string MaterielCode { get; set; } public string MaterielName { get; set; } public string MaterielTypeCode { get; set; } public string MaterielTypeName { get; set; } public string PackageCode { get; set; } public string PackageName { get; set; } public string UnitCode { get; set; } public string UnitName { get; set; } public decimal QTY { get; set; } public decimal Volume { get; set; } public decimal Weight { get; set; } public string SupplierContract { get; set; } public string SupplierCode { get; set; } public string SupplierName { get; set; } public DateTime? ProductDate { get; set; } public DateTime? ExpDate { get; set; } public int? BalanceStatus { get; set; } public string BalanceStatusName { get; set; } public string UsedFlagName { get; set; } public string CreateName { get; set; } public DateTime CreateTime { get; set; } public string UpdateName { get; set; } public DateTime UpdateTime { get; set; } } }