123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using DapperORMCore.Model.CoreModel;
- 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 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 decimal? OpeningInventoryQTY { get; set; }
- public decimal? OutStockQTY { get; set; }
- public decimal? InStockQTY { get; set; }
- public decimal? FinalInventoryQTY { get; set; }
- public string CreateName { get; set; }
- public DateTime CreateTime { get; set; }
- public string UpdateName { get; set; }
- public DateTime UpdateTime { get; set; }
- }
- }
|