using NXWMS.Client.Model.CoreModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
namespace NXWMS.Client.Model.AppModels.Condition.Balance
{
///
/// 库存统计查询条件
///
public class BalanceStatisticsSearchCondition : PageQueryConditionInfo
{
///
/// 仓库信息
///
public string WarehouseInfo { get; set; }
///
/// 库区信息
///
public string RegionInfo { get; set; }
///
/// 物料类型
///
public string MaterielType { get; set; }
///
/// 物料信息
///
public string MaterielInfo { get; set; }
///
/// 批次号
///
public string BatchNo { get; set; }
///
/// 单位编码
///
public string UnitCode { get; set; }
}
}