12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.Report
- {
- /// <summary>
- /// 仓库进销存报表
- /// </summary>
-
- public class WarehouseInventoryResult
- {
- public string WarehouseCode { get; set; }
- public string WarehouseName { get; set; }
- public string MaterielTypeCode { get; set; }
- public string MaterielTypeName { get; set; }
- public string MaterielCode { get; set; }
- public string MaterielName { get; set; }
- public string UnitCode { get; set; }
- public string UnitName { get; set; }
- public string BatchNo { get; set; }
- public int? OpeningInventoryQTY { get; set; }
- public int? OutStockQTY { get; set; }
- public int? InStockQTY { get; set; }
- public int? FinalInventoryQTY { get; set; }
- public string CreateName { get; set; }
- public DateTime CreateTime { get; set; }
- public string UpdateName { get; set; }
- public DateTime UpdateTime { get; set; }
- }
- }
|