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 InstockDayStatisticsResult { /// /// 入库单号(对应收货单号) /// public string InstockNo { get; set; } public string BillType { get; set; } public string BillTypeName { get; set; } public string LineNumber { get; set; } public DateTime InstockTime { get; set; } public DateTime InstockBillCreateTime { 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; } } }