using System.Collections.Generic;
using GxPress.Result.HumanAffairs;
namespace GxPress.Result.sell
{
///
/// 发行
///
public class SellResult
{
///
/// 本月发行额
///
public int MonthSellAmount { get; set; }
///
/// 本月发行数量
///
public int MonthSellCount { get; set; }
///
/// 同比月增长多少金额
///
public int ComparedMonthAmount { get; set; }
///
/// 同比月增长多少金额
///
public int ComparedMonthCount { get; set; }
///
/// 数据
///
public List HumanAffairsChartDataResult { get; set; }
}
}