using System;
using System.Collections.Generic;
using System.Text;
using Edu.Model.Entity.Finance;
using VT.FW.DB;
namespace Edu.Model.ViewModel.Finance
{
///
/// 简易报表扩展表
///
[Serializable]
[DB(ConnectionName = "DataStatisticsConnection")]
public class RB_SimpleReport_Extend : RB_SimpleReport
{
///
/// 费用类型集合
///
public string CostIds { get; set; }
///
/// 查询所有公司
///
public int? IsSelectAllCompany { get; set; }
///
/// 公司名称
///
public string BranchName { get; set; }
///
/// 跨年统计 起始月份
///
public string StartMonth { get; set; }
}
}