using System;
using System.Collections.Generic;
using System.Text;
using GxPress.Result.HumanAffairs;
namespace GxPress.Result.Storehouse
{
///
/// 仓库数据
///
public class StorehouseResult
{
///
/// 库存总量
///
public int StorehouseAllCount { get; set; }
///
/// 同比月增长
///
public int ComparedMonthCount { get; set; }
///
/// 同比月增长多少金额
///
public int Monthcount { get; set; }
///
/// 数据
///
public List HumanAffairsChartDataResult { get; set; }
}
}