using System;
using System.Collections.Generic;
using System.Text;
using GxPress.Result.HumanAffairs;
namespace GxPress.Result.Finance
{
///
/// 财务
///
public class FinanceResult
{
///
/// 今日收入
///
public int ToDayIncome { get; set; }
///
/// 同比月增长多少金额
///
public int ComparedMonthAmount { get; set; }
///
/// 数据
///
public List HumanAffairsChartDataResult { get; set; }
}
}