1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- 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 OutStockDayStatisticsResult
- {
- /// <summary>
- /// 出库单号(对应发货单号)
- /// </summary>
- 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; }
-
- }
- }
|