using NXWMS.Model.AppModels.Condition.NXPDA.Balance;
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.NXPDA.Balance
{
///
/// 库存结果
///
public class BalanceResult
{
///
/// 数量
///
public int QTY { get; set; }
///
/// 类型数量
///
public int TypeQTY { get; set; }
///
/// 类型数量
///
public IEnumerable Details { get; set; }
}
}