123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.Balance
- {
- /// <summary>
- /// 库存统计
- /// </summary>
- public class BalanceStatisticsSearchResult
- {
- public string WarehouseCode { get; set; }
- public string WarehouseName { get; set; }
- public string RegionCode { get; set; }
- public string RegionName { 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 QTY { get; set; }
- public string UsedFlagName { get; set; }
- }
- }
|