using System;
using System.Collections.Generic;
using System.Text;
using GxPress.Result.HumanAffairs;
namespace GxPress.Result.Print
{
///
/// 出版数据
///
public class PrintResult
{
///
/// 本年累计出版金额
///
public int YearPrintAmount { get; set; }
///
/// 本年累计出版册数
///
public int YearPrintCount { get; set; }
///
/// 本年累计的印刷费用
///
public int YearPressAmount { get; set; }
///
/// 本月累计出版金额
///
public int MonthPrintAmount { get; set; }
///
/// 本月累计出版册数
///
public int MonthPrintCount { get; set; }
///
/// 本月累计的印刷费用
///
public int MonthPressAmount { get; set; }
///
/// 同比月增长多少金额
///
public int ComparedMonthAmount { get; set; }
///
/// 同比月增长多少册
///
public int ComparedMonthCount { get; set; }
///
/// 数据
///
public List HumanAffairsChartDataResult { get; set; }
}
}