123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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
- {
- /// <summary>
- /// 入库日统计报表
- /// </summary>
- //
- public class InstockDayStatisticsResult
- {
- /// <summary>
- /// 入库单号(对应收货单号)
- /// </summary>
- 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; }
- }
- }
|